Facebook
From Gamboge Cockroach, 2 Years ago, written in Plain Text.
This paste is a reply to Untitled from Chocolate Finch - go back
Embed
Viewing differences between Untitled and Re: Untitled
import os
from twilio.rest import Client

account_sid = os.environ['ACbXXXX']
auth_token = os.environ['aa343XXXX']
client = Client(account_sid, auth_token)

message = client.messages.create(
         body='pozar!',
         from_='+14692057051',

         status_callback='http://postb.in/1234abcd',
         to='+41XXXXX'
     )

print(message.sid)