SMS API: Difference between revisions

mNo edit summary
mNo edit summary
 
Example, using curl on linux:
<syntaxhighlight>
curl --silent --get --form-string username=01234567890 --form-string password=123456 --form-string da=01234567890 --form-string ud="Hello world" https://sms.aa.net.uk/sms.cgi
curl --silent --get \
--form-string username=01234567890 \
--form-string password=123456 \
--form-string da=01234567890 \
--form-string ud="Hello world" \
https://sms.aa.net.uk/sms.cgi
</syntaxhighlight>
 
Example with a simple URL:
<syntaxhighlight>
https://sms.aa.net.uk/sms.cgi?username=%2B441234567890&password=123456&da=%2B441234567890&ud=Hello+World
</syntaxhighlight>
 
==Outbound messages==