Hi,
I found a ThingHTTP app that will allow me to send SMS messages through Twilio from an Arduino. The instructions to set it up are below, and it works:
Copy the following data into the fields. Where italics and caps you must replace with the data from Twilio.
- Name it Twilio Send SMS
- URL is https://api.twilio.com/2010-04-01/Accounts/YOUR TWILIO ACCOUNT SID/SMS/Messages
- HTTP Auth Username is YOUR TWILIO ACCOUNT SID
- HTTP Auth Password is YOUR TWILIO AUTH TOKEN
- Set the method to POST
- Content type is application/x-www-form-urlencoded
- Click remove headers, and leave host blank
- Body = From=YOUR TWILIO NUMBER&To=%%number%%&Body=%%message%%
Click Save ThingHTTP
However, I'd like to use Tropo instead of Twilio. Does anyone know how I'd set up the ThingHTTP app for Tropo instead of Twilio?
Thanks.