Show / Hide Table of Contents

Class ApplicationsResource

The "applications" collection of methods.

Inheritance
System.Object
ApplicationsResource
Namespace: Google.Apis.Games.v1
Assembly: Google.Apis.Games.v1.dll
Syntax
public class ApplicationsResource : object

Constructors

ApplicationsResource(IClientService)

Constructs a new resource.

Declaration
public ApplicationsResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

Get(String)

Retrieves the metadata of the application with the given ID. If the requested application is not available for the specified platformType, the returned response will not include any instance data.

Declaration
public virtual ApplicationsResource.GetRequest Get(string applicationId)
Parameters
Type Name Description
System.String applicationId

The application ID from the Google Play developer console.

Returns
Type Description
ApplicationsResource.GetRequest

Played()

Indicate that the the currently authenticated user is playing your application.

Declaration
public virtual ApplicationsResource.PlayedRequest Played()
Returns
Type Description
ApplicationsResource.PlayedRequest

Verify(String)

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.

Declaration
public virtual ApplicationsResource.VerifyRequest Verify(string applicationId)
Parameters
Type Name Description
System.String applicationId

The application ID from the Google Play developer console.

Returns
Type Description
ApplicationsResource.VerifyRequest
Back to top