Web Login Verification v1

This API verifies login information after login.

  • Request URL
    Commercial Server URL https://weblogin.withhive.com/verify
    Sandbox URL https://sandbox-weblogin.withhive.com/verify
  • Request Header
    HTTP Method POST
    Content-Type application/json
  • Request Body
    Field Name Type Description Required
    param string

    The param string value is created through URL encoding and BASE64 encoding of the JSON data composed of the key values in the table below.

    Y
  • Request Bodyparam
    Field Name Type Description
    token string the token information received as a response value when the web login v1 was successful.
    pid string the Player ID information received as a response value when the web login v1 was successful.
  • Request Example
  • Response Body

    Returns a code that shows whether the verification was successful or not.

    Field Name Description Type Required
    code the result code for verification success int Y

     

    code Description
    100 Success
    500 the login internal server error (internal server error, such as unavailability of middleware server and unavailability of DB server connection)
    1050 The param value in the request body is not in Json format.
    1066 the request body does not exist.
    2005 the param value does not exist.
    2200 the token is not valid. the token has been expired or the token has already been used for verification.
    2201 the verification failed. the verification token value does not match.
    2202 the verification failed. the PlayerID for verification does not match.
  • Response Sample