Facebook
From Gamboge Cockroach, 1 Year ago, written in Plain Text.
This paste is a reply to Untitled from Chocolate Finch - view diff
Embed
Download Paste or View Raw
Hits: 179
  1. import os
  2. from twilio.rest import Client
  3.  
  4. account_sid = os.environ['ACbXXXX']
  5. auth_token = os.environ['aa343XXXX']
  6. client = Client(account_sid, auth_token)
  7.  
  8. message = client.messages.create(
  9.          body='pozar!',
  10.          from_='+14692057051',
  11.  
  12.          status_callback='http://postb.in/1234abcd',
  13.          to='+41XXXXX'
  14.      )
  15.  
  16. print(message.sid)