Skip to content

Verify weblogin v2

Web login verification v2

This API verifies the login information after login. It returns idp_user_id as one of the response values.

Note

If you match the identifier in which you generated for each user when you used Web Login v2 API with idp_user_id and call get-idp-playerid with idp_user_id, you can match your own user identifier and the user PlayerID.

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

    The state is the token value obtained in the response of Web Login v2.

    Y
  • Request Example
    // Curl example.
    curl -X POST https://weblogin.withhive.com/idp_info_v2
            -H "Content-Type: application/json"
            -d "{'state': '1635746185469-kENCXIBhaSezW'}"
    
  • Response Body

    Returns a code that shows whether the verification was successful or not, and the IdP information.

    Field Name Description Type Required
    code the result code for verification success int Y
    appid Application ID string Y
    idp_index the IdP type (hive:1, facebook: 2, google: 3, apple: 9) int Y
    idp_user_id Account Token (uid) passed from IdP string Y
     
    code Description
    100 Success
    2021 In the case of a user who has not completed IdP authentication or the user's session has expired
  • Response Sample
    {
            "code": 100,
            "appid": "com.com2us.smon.normal2.freefull.google.global.android.common",
            "idp_index": 1,
            "idp_user_id": "67180714"
    }