SMS API: Difference between revisions
Appearance
Content deleted Content added
mNo edit summary |
|||
| Line 59: | Line 59: | ||
Example with a simple URL: |
Example with a simple URL: |
||
<syntaxhighlight> |
<syntaxhighlight lang="bash"> |
||
https://sms.aa.net.uk/sms.cgi?username=%2B441234567890&password=123456&da=%2B441234567890&ud=Hello+World |
https://sms.aa.net.uk/sms.cgi?username=%2B441234567890&password=123456&da=%2B441234567890&ud=Hello+World |
||
</syntaxhighlight> |
</syntaxhighlight> |
||
| Line 108: | Line 108: | ||
Example, using curl on linux: |
Example, using curl on linux: |
||
<syntaxhighlight lang="bash"> |
|||
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> |
|||
Messages are charged per message part, see our main website for prices. |
Messages are charged per message part, see our main website for prices. |
||