I'm trying to send a sms without using a library, as I can't add any DLL's to my project.
I've formatted the following url correctly from the API and I don't seem to get an SMS.
I'm trying to send a sms without using a library, as I can't add any DLL's to my project.
I've formatted the following url correctly from the API and I don't seem to get an SMS.
Ricky from Twilio here.
One quick way to generate an API request is to use the API Explorer.
For example, the explorer would give you this code to show how to make an HTTP request using curl to the API:
curl -X POST 'https://api.twilio.com/2010-04-01/Accounts/[AccountSid]/Messages.json' \
--data-urlencode 'To=555-555-5555' \
--data-urlencode 'From=+15555551234' \
--data-urlencode 'Body=Brooklyn's in the house!' \
-u [AccountSid]:[AuthToken]
Hope that helps.