Guest User

Untitled

a guest
Jan 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. from twilio.rest import Client
  2.  
  3. # Your Account Sid and Auth Token from twilio.com/console
  4. account_sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
  5. auth_token = 'your_auth_token'
  6.  
  7. client = Client(account_sid, auth_token)
  8.  
  9. message = client.messages \
  10. .create(
  11. body='Hello there!',
  12. from_='whatsapp:+14155238886',
  13. to='whatsapp:+15005550006'
  14. )
  15. print(message.sid)
Add Comment
Please, Sign In to add comment