locasms
⚠️ After
February, 10, 2018
the base IP of the service will change as noticed on this issue. If you don't upgrade to version0.3.1
your app will stop delivering SMS.
Client to consume API's from LocaSMS and its Short Code SMS version SMS Plataforma.
Installation
Add this line to your application's Gemfile:
gem 'locasms'
And then execute:
$ bundle
Or install it yourself as:
$ gem install locasms
Usage
Simple example:
require 'locasms'
# Default:
cli = LocaSMS::Client.new 'LOGIN', 'PASSWORD'
# Short Code:
cli = LocaSMS::Client.new 'LOGIN', 'PASSWORD', type: :shortcode
# With default url callback (optional):
cli = LocaSMS::Client.new 'LOGIN', 'PASSWORD', url_callback: 'http://url.to/callback'
# delivering message to one mobile
cli.deliver 'my message', '1155559999'
# delivering the same message to multiple mobliles at once
cli.deliver 'my message', '1199998888,5500002222'
cli.deliver 'my message', '1199998888', '5500002222'
cli.deliver 'my message', ['1199998888', '5500002222']
cli.deliver 'my message', %w(1199998888 5500002222)
# delivering message with url callback
cli.deliver 'my message', '1155559999', url_callback: 'http://url.to/callback'
# scheduling the deliver of a message to one mobile
cli.deliver_at 'my message', '2013-10-12 20:33:00', '1155559999'
# scheduling the deliver of a message to multiple mobiles at once
cli.deliver_at 'my message', '2013-10-12 20:33:00', '1199998888,5500002222'
cli.deliver_at 'my message', '2013-10-12 20:33:00', '1199998888', '5500002222'
cli.deliver_at 'my message', '2013-10-12 20:33:00', ['1199998888', '5500002222']
cli.deliver_at 'my message', '2013-10-12 20:33:00', %w(1199998888 5500002222)
# scheduling the deliver of a message with url callback
cli.deliver_at 'my message', '2013-10-12 20:33:00', '1155559999', url_callback: 'http://url.to/callback'
# geting the remaining balance
cli.balance
# geting the status of a campaign
cli.campaign_status '0000'
# holding a campaign
cli.campaign_hold '0000'
# resuming a campaign
cli.campaign_release '0000'
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request