第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在 GSuite 域中創(chuàng)建輔助日歷

在 GSuite 域中創(chuàng)建輔助日歷

PHP
藍山帝景 2023-06-24 17:45:29
我創(chuàng)建了一個 GSuite 帳戶,其域名為 redu.club我使用 GSuite 管理員電子郵件創(chuàng)建了一個項目和一個服務(wù)帳戶使用共享設(shè)置將該服務(wù)帳戶添加到管理日歷,并授予完全管理權(quán)限。我正在嘗試在 redu-admin@redu.club 帳戶下創(chuàng)建輔助日歷。這是我的代碼:putenv('GOOGLE_APPLICATION_CREDENTIALS=' . __DIR__ . '/redu-service-account.json');define('SCOPES', Google_Service_Calendar::CALENDAR);function createCalendar(){    try {        // Create and configure a new client object.                $client = new Google_Client();        $client->setApplicationName('Redu');        $client->useApplicationDefaultCredentials();        $client->addScope([SCOPES]);        $client->setAccessType('offline');        $service = new Google_Service_Calendar($client);        // Calendar creation        $calendar = new Google_Service_Calendar_Calendar();        $calendar->setSummary('test');        $calendar->setTimeZone('America/Los_Angeles');        $createdCalendar = $service->calendars->insert($calendar);        // Make the newly created calendar public        $rule = new Google_Service_Calendar_AclRule();        $scope = new Google_Service_Calendar_AclRuleScope();        $scope->setType("default");        $scope->setValue("");        $rule->setScope($scope);        $rule->setRole("reader");        $createdRule = $service->acl->insert($createdCalendar->getId(), $rule);        return $createdCalendar->getId();    } catch (Exception $e) {        print "An error occurred: " . $e->getMessage();    }}此代碼創(chuàng)建了一個日歷,但是當(dāng)我轉(zhuǎn)到 redu-admin@redu.club 的日歷時,我看不到它。我的猜測是它正在服務(wù)帳戶下創(chuàng)建一個日歷。當(dāng)我嘗試添加行時 $this->client->setSubject('redu-admin@redu.club');,得到的錯誤是:Fatal error: Uncaught exception 'Google_Service_Exception' with message '{  "error": "unauthorized_client",  "error_description": "Client is unauthorized to retrieve access tokens using this method, or client not authorized for any of the scopes requested."任何幫助是極大的贊賞。
查看完整描述

1 回答

?
慕妹3242003

TA貢獻1824條經(jīng)驗 獲得超6個贊

如果要為用戶創(chuàng)建輔助日歷,則需要模擬該用戶

您已經(jīng)正確嘗試過:

? ? ? $client = new Google_Client();

? ? ? ? $client->setApplicationName('Redu');

? ? ? ? $client->useApplicationDefaultCredentials();

? ? ? ? $client->addScope([SCOPES]);

? ? ? ? $client->setAccessType('offline');

? ? ? ? $client->setSubject('redu-admin@redu.club');

? ? ? ? $service = new Google_Service_Calendar($client);

但之前需要遵循兩個重要步驟:

  1. 在 GCP 控制臺中為服務(wù)帳號啟用域范圍委派

  2. 在管理控制臺中為服務(wù)帳號提供必要的委派范圍


查看完整回答
反對 回復(fù) 2023-06-24
  • 1 回答
  • 0 關(guān)注
  • 118 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號