The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Google::Ads::GoogleAds::Common::AuthHandlerInterface

DESCRIPTION

Interface to be implemented by concrete authorization handlers. Defines the necessary subroutines to build authorized request against a Google API.

METHODS

initialize

Initializes the handler with the the API client object and a given set of properties, such as: client_id, client_secret, etc.

Parameters

  • A required api_client with a reference to the API client object handling the requests against the API.

  • A required properties with a reference to a hash of properties.

prepare_request

Constructs a HTTP::Request object to send an authorized request to the API. Implementors will attach authorization headers to the request at this phase.

Parameters

  • http_method: HTTP request method, e.g. GET, POST.

  • request_url: URL to the resource to access.

  • http_headers: an array of HTTP headers to be included in the request.

  • request_content: a string as the payload to be sent in the request.

is_auth_enabled

Method called to check if the authorization has already been setup, so the "prepare_request" method can be called.

Returns

True, if the authorization is in place and the handler can prepare requests. False, otherwise.

LICENSE AND COPYRIGHT

Copyright 2019 Google LLC

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

REPOSITORY INFORMATION

 $Rev: $
 $LastChangedBy: $
 $Id: $