Provision

Provision SearchSearch
Author Message
Pedro Simao
New member
Username: Pedro

Post Number: 2
Registered: 08-2005
Posted on Thursday, August 18, 2005 - 05:18 pm:   

How can i send the admin login details on the url for acount provisioning?

I'm using the url for a xmlHTTP request and so i must send all details on a url...

Thanks
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 4843
Registered: 10-2002
Posted on Thursday, September 01, 2005 - 07:05 pm:   

Hi Pedro,

I assume that you're referring to the following interface for provisioning user accounts on the NowSMS server:

http://support.nowsms.com/discus/messages/485/5907.html

This interface does require HTTP basic authentication, and use of the "Authorization:" header.

XMLHTTP.setRequestHeader "Authorization", "basic " & Base64Encode("MyAdmin:MyPass")

Here's an example that is not for NowSMS, but for one of our other products that uses a similar provisioning URL format:

http://support.nowsms.com/discus/messages/7486/8884.html

-bn