Request for time verification

Request for time verification

POST http://lk.mysmpp.ru/xml/time.php

Headers

NameTypeDescription

Content-type*

String

text/xml; charset=utf-8;

Request Body

NameTypeDescription

login.value*

String

Your login in the system

token.value*

String

You can use a secret key instead of login and password. To obtain it, please contact your manager

password.value*

String

Your password in the system

<?xml version="1.0" encoding="utf-8" ?>
<response>
     <time>15:34:05</time>
</response>

Deciphering parameters in query responses

ParameterData typeDescription

time

Int

Local time of the user

This calculates the time as the time on the server minus the hh difference

error

String

The error text can take the following values:

  • Incorrect XML document format

  • Incorrect login or password

  • POST data is missing

Example XML request

<?xml  version="1.0" encoding="utf-8" ?>
<request>
     <security>
          <login value="login" />
          <password value="password" />
     </security>
</request>

Calculation example

The server is located in Moscow and its server time is Moscow, at the time of the request it was: 15:34:27.

The user was in Novosibirsk, and the time zone difference (between the server and the user) was +3.

This will return the following XML document to you:

<?xml version="1.0" encoding="utf-8"?>
<response>
    <time>2012-12-17 18:34:27</time>
</response>

Last updated