Sha256: affba2fcbc61a1094aba5b92eabff83042e8d444f117187a8fd60e069c096cab
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
smsified ======== SMSified is a simple API for sending and receiving text messages using regular phone numbers or short codes. SMSified uses a simple REST interface based on the GSMA OneAPI standard and is backed by Voxeo - the worlds largest communications cloud. Ruby lib for consuming the SMSified OneAPI. This is a Ruby gem for consuming the SMSified OneAPI. Installation ------------ gem install smsified Example ------- Send an SMS: require 'rubygems' require 'smsified' oneapi = Smsified::OneAPI.new(:username => 'user', :password => 'bug.fungus24') oneapi.send_sms :address => '14155551212', :message => 'Hi there!', :sender_address => '13035551212' Find a subscription: require 'rubygems' require 'smsified' subscriptions = Smsified::Subscriptions.new(:username => 'user', :password => 'bug.fungus24') subscriptions.inbound_subscriptions('17177455076') Documentation ------------- May be found at http://smsified.github.com/smsified-ruby & http://smsified.com. License ------- MIT - See LICENSE.txt
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
smsified-0.1.4 | README.md |