Skip to content

newapplesho/twilio-smalltalk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

twilio-smalltalk

A Smalltalk library for communicating with the Twilio REST API (http:https://twilio.com).

Supported Smalltalk Versions

Name Smalltalk Version Version
Pharo Smalltalk 4.0, 5.0, 6.0, 6.1 v0.2.2
Pharo Smalltalk 11.0, 12.0 Latest Version

Installation

You can load # twilio-smalltalk using Metacello

Metacello new
    baseline: 'Twilio';
    repository: 'github:https://newapplesho/twilio-smalltalk/pharo-repository';
    baseline: 'Twilio';
    load.

How to use

You can read official documentation here.

Setup

TwilioSettings default accountSid: 'ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'.
TwilioSettings default authToken: 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'.

Making a Phone Call

client := TwilioRestClient new.
client makeCallTo: '+14155551212' from: '+14158675309' url: 'http:https://demo.twilio.com/docs/voice.xml'.

Sending an SMS Message

client := TwilioRestClient new.
client sendTo: '+15558675309' from: '+14158141829' message: 'Sent from Pharo Smalltalk.'.
client sendTo: '+15558675309' from: '+14158141829' message: 'Pharo SmalltalkからSMSを送信'.

Sending an MMS Message

client := TwilioRestClient new.
client sendTo: '+15558675309' from: '+14158141829' message: 'Sent from Pharo Smalltalk.' mediaUrl: 'http:https://www.example.com/hearts.png'.

Retrieve All Usage Records

client := TwilioRestClient new.
client accounts usageRecords list.

Retrieve Usage Records

client := TwilioRestClient new.

"Return a single UsageRecord per usage category, for yesterday's usage only."
client accounts usageRecords yesterday list.

"Return a single UsageRecord per usage category, for this month's usage only."
client accounts usageRecords thisMonth list.

Accounts

client := TwilioRestClient new.
"Returns a representation of an account."
client getAccount: 'ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'.

Handling Exceptions

client := TwilioRestClient new.
[ client sendTo: '+1' from: '+ 14158141829' message: 'Handling Exceptions test'.] on: TwilioRestException do:[:ex | ex inspect ].

About

Smalltalk library for communicating with the Twilio REST API

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published