Skip to content
David Wilkie edited this page Nov 11, 2010 · 3 revisions

Tropo

Getting Started

  1. Sign up for a free developers account at: http://tropo.com
  2. Create a new Tropo WebAPI application and add a new outbound token
  3. Replace the sample configuration with your outbound token (see below)
  4. Read this article for more info on how to set up your server for sending SMS
  5. See readme for details on how to send and receive SMS

Note: If you are using an authentication key for incoming SMS remember to include it as a query parameter in your Tropo SMS url. For example if your server's incoming text message callback url is: https://example.com/incoming_text_messages and your authentication key is: "secret", then you should specify your callback url in the Tropo application settings console as: http://example.com/incoming_text_messages?secret

Configuration

ActionSms::Base.establish_connection(
  :adapter => "tropo",
  :outgoing_token => "Tropo Outgoing Token"
)

Dependencies

The Tropo Adapter depends on tropo_message

Clone this wiki locally