當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Google_Client::setSubject方法代碼示例

本文整理匯總了PHP中Google_Client::setSubject方法的典型用法代碼示例。如果您正苦於以下問題:PHP Google_Client::setSubject方法的具體用法?PHP Google_Client::setSubject怎麽用?PHP Google_Client::setSubject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Google_Client的用法示例。


在下文中一共展示了Google_Client::setSubject方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: useAssertCredentials

 /**
  * Determine and use credentials if user has set them.
  * @param $userEmail
  * @return bool used or not
  */
 protected function useAssertCredentials($userEmail = '')
 {
     $serviceJsonUrl = array_get($this->config, 'service.file', '');
     if (empty($serviceJsonUrl)) {
         return false;
     }
     $this->client->setAuthConfig($serviceJsonUrl);
     if ($userEmail) {
         $this->client->setSubject($userEmail);
     }
     return true;
 }
開發者ID:pulkitjalan,項目名稱:google-apiclient,代碼行數:17,代碼來源:Client.php

示例2: testApplicationDefaultCredentialsWithSubject

 public function testApplicationDefaultCredentialsWithSubject()
 {
     $this->checkServiceAccountCredentials();
     $credentialsFile = getenv('GOOGLE_APPLICATION_CREDENTIALS');
     $sub = 'sub123';
     $client = new Google_Client();
     $client->setAuthConfig($credentialsFile);
     $client->setSubject($sub);
     $http = new Client();
     $client->authorize($http);
     $this->checkAuthHandler($http, 'AuthToken');
     $this->checkCredentials($http, 'Google\\Auth\\Credentials\\ServiceAccountCredentials', $sub);
 }
開發者ID:jvidor,項目名稱:google-api-php-client,代碼行數:13,代碼來源:ClientTest.php

示例3: testApplicationDefaultCredentialsWithSubject

 public function testApplicationDefaultCredentialsWithSubject()
 {
     $sub = 'sub123';
     $client = new Google_Client();
     $client->setAuthConfig(__DIR__ . '/../config/application-default-credentials.json');
     $client->setSubject($sub);
     $http = new Client();
     $client->authorize($http);
     $listeners = $http->getEmitter()->listeners('before');
     $this->assertEquals(1, count($listeners));
     $this->assertEquals(2, count($listeners[0]));
     $this->assertInstanceOf('Google\\Auth\\AuthTokenFetcher', $listeners[0][0]);
     // access the protected $fetcher property
     $class = new ReflectionClass(get_class($listeners[0][0]));
     $property = $class->getProperty('fetcher');
     $property->setAccessible(true);
     $fetcher = $property->getValue($listeners[0][0]);
     $this->assertInstanceOf('Google\\Auth\\ServiceAccountCredentials', $fetcher);
     // access the protected $auth property
     $class = new ReflectionClass(get_class($fetcher));
     $property = $class->getProperty('auth');
     $property->setAccessible(true);
     $auth = $property->getValue($fetcher);
     $this->assertEquals($sub, $auth->getSub());
 }
開發者ID:rahul9878,項目名稱:google-api-php-client,代碼行數:25,代碼來源:ClientTest.php


注:本文中的Google_Client::setSubject方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。