Questo webservice fornisce la stringa di autenticazione necessaria per tutte le chiamate agli webservice di Overplace. La chiamata al metodo wsLoginCheck ritorna al client un token di lunghezza variabile utilizzabile nei 10 secondi successivi.
Url webservice
http://www.overplace.com/wsdl/ws_login
Metodo
wsLoginCheck
Parametri
- idapp : Application id delle vetrina Overplace sulla quale il client vuole operare (es. CJ50)(string).
- user : Username dell’esercente (quello utilizzato per l’accesso all’area myoverplace)(string).
- pass : Password dell’esercente(string).
- response type : formato della risposta, i parametri accettati sono “xml” o “json”(string).
Esempio Request lato Client
1 2 3 4 5 6 7 8 9 10 11 |
<?xml version="1.0" encoding="ISO-8859-1"?> <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <ns9048:wsLoginCheck xmlns:ns9048="http://tempuri.org"> <idapp xsi:type="xsd:string">CJ50</idapp> <user xsi:type="xsd:string">username@overplace.com</user> <pass xsi:type="xsd:string">password</pass> <response_type xsi:type="xsd:string">xml</response_type> </ns9048:wsLoginCheck> </SOAP-ENV:Body> </SOAP-ENV:Envelope> |
Esempio Response lato Client
1 2 3 |
<response> <ws_token>Pr6+pslK1qfprgzVNRZqOt5U75YycTY7AewWpkbqNAU=</ws_token> </response> |
Response in formato Json
1 |
{"ws_token":"8tUapXojy+b7lDkmGizXqT6Ez0oQ4s3LDSKuoI59APo="} |
Comments are closed.