* */ abstract class IWP_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 IWP_google_Http_Request $request * @return IWP_google_Http_Request $request */ abstract public function authenticatedRequest(IWP_google_Http_Request $request); abstract public function authenticate($code); abstract public function sign(IWP_google_Http_Request $request); abstract public function createAuthUrl($scope); abstract public function refreshToken($refreshToken); abstract public function revokeToken(); }