Class: Google::Apis::PlaygroupingV1alpha1::PlayGroupingService
- Inherits:
-
Core::BaseService
- Object
- Core::BaseService
- Google::Apis::PlaygroupingV1alpha1::PlayGroupingService
- Defined in:
- lib/google/apis/playgrouping_v1alpha1/service.rb
Overview
Google Play Grouping API
playgrouping.googleapis.com API.
Constant Summary collapse
- DEFAULT_ENDPOINT_TEMPLATE =
"https://playgrouping.$UNIVERSE_DOMAIN$/"
Instance Attribute Summary collapse
-
#key ⇒ String
API key.
-
#quota_user ⇒ String
Available to use for quota purposes for server-side applications.
Instance Method Summary collapse
-
#create_or_update_tags(app_package, token, create_or_update_tags_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PlaygroupingV1alpha1::CreateOrUpdateTagsResponse
Create or update tags for the user and app that are represented by the given token.
-
#initialize ⇒ PlayGroupingService
constructor
A new instance of PlayGroupingService.
-
#verify_token(app_package, token, verify_token_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PlaygroupingV1alpha1::VerifyTokenResponse
Verify an API token by asserting the app and persona it belongs to.
Constructor Details
#initialize ⇒ PlayGroupingService
Returns a new instance of PlayGroupingService.
47 48 49 50 51 52 |
# File 'lib/google/apis/playgrouping_v1alpha1/service.rb', line 47 def initialize super(DEFAULT_ENDPOINT_TEMPLATE, '', client_name: 'google-apis-playgrouping_v1alpha1', client_version: Google::Apis::PlaygroupingV1alpha1::GEM_VERSION) @batch_path = 'batch' end |
Instance Attribute Details
#key ⇒ String
Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
40 41 42 |
# File 'lib/google/apis/playgrouping_v1alpha1/service.rb', line 40 def key @key end |
#quota_user ⇒ String
Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
45 46 47 |
# File 'lib/google/apis/playgrouping_v1alpha1/service.rb', line 45 def quota_user @quota_user end |
Instance Method Details
#create_or_update_tags(app_package, token, create_or_update_tags_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PlaygroupingV1alpha1::CreateOrUpdateTagsResponse
Create or update tags for the user and app that are represented by the given token.
118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/google/apis/playgrouping_v1alpha1/service.rb', line 118 def (app_package, token, = nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'v1alpha1/{+appPackage}/{+token}/tags:createOrUpdate', ) command.request_representation = Google::Apis::PlaygroupingV1alpha1::CreateOrUpdateTagsRequest::Representation command.request_object = command.response_representation = Google::Apis::PlaygroupingV1alpha1::CreateOrUpdateTagsResponse::Representation command.response_class = Google::Apis::PlaygroupingV1alpha1::CreateOrUpdateTagsResponse command.params['appPackage'] = app_package unless app_package.nil? command.params['token'] = token unless token.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#verify_token(app_package, token, verify_token_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PlaygroupingV1alpha1::VerifyTokenResponse
Verify an API token by asserting the app and persona it belongs to. The verification is a protection against client-side attacks and will fail if the contents of the token don't match the provided values. A token must be verified before it can be used to manipulate user tags.
80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/google/apis/playgrouping_v1alpha1/service.rb', line 80 def verify_token(app_package, token, verify_token_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'v1alpha1/{+appPackage}/{+token}:verify', ) command.request_representation = Google::Apis::PlaygroupingV1alpha1::VerifyTokenRequest::Representation command.request_object = verify_token_request_object command.response_representation = Google::Apis::PlaygroupingV1alpha1::VerifyTokenResponse::Representation command.response_class = Google::Apis::PlaygroupingV1alpha1::VerifyTokenResponse command.params['appPackage'] = app_package unless app_package.nil? command.params['token'] = token unless token.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |