Verifies the auth token provided with this request is for the application with the specified ID, and returns the ID of the player it was granted for. Try it now.
Request
HTTP request
GET https://www.googleapis.com/games/v1/applications/applicationId/verify
Parameters
Parameter name | Value | Description |
---|---|---|
Path parameters | ||
applicationId |
string |
The application ID from the Google Play developer console. |
Authorization
This request requires authorization with the following scope:
Scope |
---|
https://www.googleapis.com/auth/games |
For more information, see the authentication and authorization page.
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a response body with the following structure:
{ "kind": "games#applicationVerifyResponse", "player_id": string, "alternate_player_id": string }
Property name | Value | Description | Notes |
---|---|---|---|
kind |
string |
Uniquely identifies the type of this resource. Value is always the fixed string games#applicationVerifyResponse . |
|
player_id |
string |
The ID of the player that was issued the auth token used in this request. | |
alternate_player_id |
string |
An alternate ID that was once used for the player that was issued the auth token used in this request. (This field is not normally populated.) |
Try it!
Use the APIs Explorer below to call this method on live data and see the response.