Google_Auth_Abstract
Abstract class for the Authentication in the API client.
Defined (1)
The class is defined in the following location(s).
- /includes/api-libs/Google/Auth/Abstract.php
- abstract class Google_Auth_Abstract
- {
- /**
- * An utility function that first calls $this->auth->sign($request) and then
- * executes makeRequest() on that signed request. Used for when a request
- * should be authenticated
- * @param Google_Http_Request $request
- * @return Google_Http_Request $request
- */
- abstract public function authenticatedRequest(Google_Http_Request $request);
- abstract public function sign(Google_Http_Request $request);
- }