Sending sms by url

Sending sms by url SearchSearch
Author Message
claudio81
Posted on Monday, May 12, 2003 - 09:24 am:   

I'm writing an application in php to send sms by url: i've seen that i have to create an url like this, http://127.0.0.1:8800/?PhoneNumber=%2B447778001210&...,
but this supposes that the users is logged in the system: how i can sendo to the server also the login and password parameterers with the sms??
Bryce Norwood - NowSMS Support (Bryce)
Posted on Tuesday, May 13, 2003 - 03:26 pm:   

Hi Claudio,

You can either include an "Authorization:" header in your request ("Authorization: Basic username:password" where "username:password" is BASE64 encoded ) ... or you can take the easy way out and include "user=username&password=password" in the URL request.

-bn