我無法找到用於調用Google Resources.calendars列表方法的python腳本。 我可以看到如何使用GET方法但不是從python調用的細節。如何從python調用Google Resources.calendars api。
https://developers.google.com/admin-sdk/directory/v1/reference/resources/calendars/list
請幫我在這。
我無法找到用於調用Google Resources.calendars列表方法的python腳本。 我可以看到如何使用GET方法但不是從python調用的細節。如何從python調用Google Resources.calendars api。
https://developers.google.com/admin-sdk/directory/v1/reference/resources/calendars/list
請幫我在這。
@cylijus,
該方法是deprecated.I不想通過我的憑據。我有下面的代碼列出用戶鏈接了:
credentials = get_credentials()
http = credentials.authorize(httplib2.Http())
service = discovery.build('admin', 'directory_v1', http=http)
print('Getting the first 10 users in the domain')
results = service.users().list(customer='my_customer', maxResults=10,
orderBy='email').execute()
users = results.get('users', [])
if not users:
print('No users in the domain.')
else:
print('Users:')
for user in users:
print('{0} ({1})'.format(user['primaryEmail'],
user['name']['fullName']))
,但不知道如何調用Resources.calendars:list方法
爲什麼會調用它的Python是從別的調用它有什麼不同,或者與調用任何其他端點不同? –
尋找類似於以下內容的方法:https://developers.google.com/admin-sdk/directory/v1/quickstart/python。 在這個腳本中他們給出了users.list方法。但我想知道它是什麼爲resources.calendars:列表方法 –