From d39c5c26e750d153508c90637776fcab06cf32cb Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Mon, 17 Aug 2026 17:03:06 +0200 Subject: [PATCH] Fix auth token --- cloud/APIs/twilio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/APIs/twilio.py b/cloud/APIs/twilio.py index 63f6cbb..33240b8 100644 --- a/cloud/APIs/twilio.py +++ b/cloud/APIs/twilio.py @@ -6,7 +6,7 @@ def send_alert_sms(to_phone: str, room_title: str, room_link: str = None, client Sends an SMS alert using Twilio notifying the client of an issue and support room creation. """ account_sid = os.environ.get("TWILIO_SID") - auth_token = os.environ.get("TWILIO_ACCOUNT_SECRET") + auth_token = os.environ.get("TWILIO_AUTH_TOKEN") from_phone = os.environ.get("TWILIO_PHONE_NUMBER") # Requires your Twilio sender phone number if not account_sid or not auth_token or not from_phone: