You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pclass="firstline">Retrieve the Recall tokens from all requested games that is associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have an active PGS Player profile.</p>
<pclass="firstline">Retrieve the last Recall token from all developer games that is associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.</p>
85
+
<pclass="firstline">Retrieve the last Recall token from all developer games that is associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.</p>
<pclass="firstline">Retrieve all Recall tokens associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.</p>
94
+
<pclass="firstline">Retrieve all Recall tokens associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.</p>
<pclass="firstline">Delete a Recall token linking the PGS Player principal identified by the Recall session and an in-game account identified either by the 'persona' or by the token value.</p>
<pre>Retrieve the Recall tokens from all requested games that is associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have an active PGS Player profile.
107
+
108
+
Args:
109
+
sessionId: string, Required. Opaque server-generated string that encodes all the necessary information to identify the PGS player / Google user and application. (required)
110
+
applicationIds: string, Required. The application IDs from the Google Play developer console for the games to return scoped ids for. (repeated)
111
+
x__xgafv: string, V1 error format.
112
+
Allowed values
113
+
1 - v1 error format
114
+
2 - v2 error format
115
+
116
+
Returns:
117
+
An object of the form:
118
+
119
+
{ # A list of recall token data returned from the RetrieveGamesPlayerTokens RPC
120
+
"applicationRecallTokens": [ # The requested applications along with the recall tokens for the player. If the player does not have recall tokens for an application, that application is not included in the response.
121
+
{ # Recall tokens for a game.
122
+
"applicationId": "A String", # The application that this player identifier is for.
123
+
"token": [ # Recall token data.
124
+
{ # Recall token data returned from RetrievePlayerTokens RPC
125
+
"expireTime": "A String", # Optional. Optional expiration time of the token
126
+
"multiPlayerPersona": True or False, # Required. Whether the persona identified by the token is linked to multiple PGS Players
127
+
"token": "A String", # Required. Value of the Recall token as it is provided by the client via LinkPersona RPC
<pre>Retrieve the last Recall token from all developer games that is associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.
137
+
<pre>Retrieve the last Recall token from all developer games that is associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.
104
138
105
139
Args:
106
140
sessionId: string, Required. Opaque server-generated string that encodes all the necessary information to identify the PGS player / Google user and application. (required)
<pre>Retrieve all Recall tokens associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.
216
+
<pre>Retrieve all Recall tokens associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.
183
217
184
218
Args:
185
219
sessionId: string, Required. Opaque server-generated string that encodes all the necessary information to identify the PGS player / Google user and application. (required)
Copy file name to clipboardExpand all lines: googleapiclient/discovery_cache/documents/games.v1.json
+65-3Lines changed: 65 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -822,8 +822,38 @@ false
822
822
},
823
823
"recall": {
824
824
"methods": {
825
+
"gamesPlayerTokens": {
826
+
"description": "Retrieve the Recall tokens from all requested games that is associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have an active PGS Player profile.",
"description": "Required. The application IDs from the Google Play developer console for the games to return scoped ids for.",
836
+
"location": "query",
837
+
"repeated": true,
838
+
"type": "string"
839
+
},
840
+
"sessionId": {
841
+
"description": "Required. Opaque server-generated string that encodes all the necessary information to identify the PGS player / Google user and application.",
"description": "Retrieve the last Recall token from all developer games that is associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.",
856
+
"description": "Retrieve the last Recall token from all developer games that is associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.",
"description": "Retrieve all Recall tokens associated with the PGS Player principal encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.",
916
+
"description": "Retrieve all Recall tokens associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have active PGS Player profile.",
887
917
"flatPath": "games/v1/recall/tokens/{sessionId}",
888
918
"httpMethod": "GET",
889
919
"id": "games.recall.retrieveTokens",
@@ -1378,7 +1408,7 @@ false
1378
1408
}
1379
1409
}
1380
1410
},
1381
-
"revision": "20240515",
1411
+
"revision": "20240529",
1382
1412
"rootUrl": "https://games.googleapis.com/",
1383
1413
"schemas": {
1384
1414
"AchievementDefinition": {
@@ -2132,6 +2162,24 @@ false
2132
2162
},
2133
2163
"type": "object"
2134
2164
},
2165
+
"GamePlayerToken": {
2166
+
"description": "Recall tokens for a game.",
2167
+
"id": "GamePlayerToken",
2168
+
"properties": {
2169
+
"applicationId": {
2170
+
"description": "The application that this player identifier is for.",
2171
+
"type": "string"
2172
+
},
2173
+
"token": {
2174
+
"description": "Recall token data.",
2175
+
"items": {
2176
+
"$ref": "RecallToken"
2177
+
},
2178
+
"type": "array"
2179
+
}
2180
+
},
2181
+
"type": "object"
2182
+
},
2135
2183
"GamesAchievementIncrement": {
2136
2184
"description": "The payload to request to increment an achievement.",
2137
2185
"id": "GamesAchievementIncrement",
@@ -3179,6 +3227,20 @@ false
3179
3227
},
3180
3228
"type": "object"
3181
3229
},
3230
+
"RetrieveGamesPlayerTokensResponse": {
3231
+
"description": "A list of recall token data returned from the RetrieveGamesPlayerTokens RPC",
3232
+
"id": "RetrieveGamesPlayerTokensResponse",
3233
+
"properties": {
3234
+
"applicationRecallTokens": {
3235
+
"description": "The requested applications along with the recall tokens for the player. If the player does not have recall tokens for an application, that application is not included in the response.",
3236
+
"items": {
3237
+
"$ref": "GamePlayerToken"
3238
+
},
3239
+
"type": "array"
3240
+
}
3241
+
},
3242
+
"type": "object"
3243
+
},
3182
3244
"RetrievePlayerTokensResponse": {
3183
3245
"description": "Response for the RetrievePlayerTokens RPC",
0 commit comments