verify method
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.
Request parameters:
applicationId
- The application ID from the Google Play developer
console.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ApplicationVerifyResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<ApplicationVerifyResponse> verify(
core.String applicationId, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'games/v1/applications/' +
commons.escapeVariable('$applicationId') +
'/verify';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ApplicationVerifyResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}