Created
August 18, 2012 15:55
-
-
Save RobSpectre/3387915 to your computer and use it in GitHub Desktop.
Example of a Twilio Proactive Notification in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from twilio.rest import TwilioRestClient | |
| ACCOUNT_SID = "ACxxxxx" | |
| AUTH_TOKEN = "yyyyyyyy" | |
| client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN) | |
| client.sms.messages.create(from_="+15556667777", to="+15558675309", body="Reminder: Harley Manning will be signing copies of his new book at the Commonwealth Club Thursday at 6 p.m.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment