Difference between revisions of "MT HTTP"

From SMS Wiki
Jump to: navigation, search
(New page: == Sending an SMS via SOAP, HTTP POST or HTTP GET == 1. Get your token and signature 2. Send message To get your token visit or make a call to: http://api.upsidewireless.com/soap/Authen...)
 
Line 1: Line 1:
 
 
== Sending an SMS via SOAP, HTTP POST or HTTP GET ==
 
== Sending an SMS via SOAP, HTTP POST or HTTP GET ==
  
1. Get your token and signature
+
* Get your token and signature
2. Send message
+
* Send message
  
 
To get your token visit or make a call to: http://api.upsidewireless.com/soap/Authentication.asmx?op=GetParameters
 
To get your token visit or make a call to: http://api.upsidewireless.com/soap/Authentication.asmx?op=GetParameters
 +
 
To send your message visit or make a call to: http://api.upsidewireless.com/soap/SMS.asmx?op=Send_Plain
 
To send your message visit or make a call to: http://api.upsidewireless.com/soap/SMS.asmx?op=Send_Plain
  
Sending VIA SOAP is the recommended method as the input and output variables are strongly typed, however at times using HTTP POST or GET is the only option. HTTP GET should be fiercely avoided as it is fraught with problems (string length, encoding issues).
+
Sending VIA SOAP is the recommended method as the input and output variables are strongly typed, however at times using HTTP POST or GET is the only option. HTTP GET should be fiercely avoided as it is fraught with problems (string length, encoding issues, etc).
  
 
When using HTTP POST, be certain to retrieve the result of the request as it will contain valuable data that will assist in determining the message state.
 
When using HTTP POST, be certain to retrieve the result of the request as it will contain valuable data that will assist in determining the message state.
  
 
To see a full set of functions that are available for sending SMS, please visit http://api.upsidewireless.com/soap/SMS.asmx
 
To see a full set of functions that are available for sending SMS, please visit http://api.upsidewireless.com/soap/SMS.asmx

Revision as of 15:22, 11 May 2007

Sending an SMS via SOAP, HTTP POST or HTTP GET

  • Get your token and signature
  • Send message

To get your token visit or make a call to: http://api.upsidewireless.com/soap/Authentication.asmx?op=GetParameters

To send your message visit or make a call to: http://api.upsidewireless.com/soap/SMS.asmx?op=Send_Plain

Sending VIA SOAP is the recommended method as the input and output variables are strongly typed, however at times using HTTP POST or GET is the only option. HTTP GET should be fiercely avoided as it is fraught with problems (string length, encoding issues, etc).

When using HTTP POST, be certain to retrieve the result of the request as it will contain valuable data that will assist in determining the message state.

To see a full set of functions that are available for sending SMS, please visit http://api.upsidewireless.com/soap/SMS.asmx