Facebook
From Chocolate Finch, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 500
  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)

Replies to Untitled rss

Title Name Language When
Re: Untitled Gamboge Cockroach text 1 Year ago.