How to have multiple scopes with Google Calendar +

2019-07-19 00:39发布

I am new to the Google APIs and want to know how I would be able to access 2 different APIs within the same files.

I have

SCOPES = 'https://www.googleapis.com/auth/calendar'

but I also want

SCOPES = 'https://www.googleapis.com/auth/drive.metadata.readonly'

to be accessible from the same file. Does anyone have any idea how to go about doing this?

Thanks!

2条回答
祖国的老花朵
2楼-- · 2019-07-19 01:46

When you authenticate simply add both scopes. The user will be prompted to grant you access to both.

SCOPES = 'https://www.googleapis.com/auth/drive.metadata.readonly https://www.googleapis.com/auth/calendar'

You may have to put a comma between them I a not sure it depends upon the library

Now I am not a python dev, however most of the Google client libraries are created the same. Assuming you are using that you will need to create both a calendar service and a drive service. You create them both using the same credential you got from above. Code ripped from here.

serviceDrive = discovery.build('drive', 'v3', http=http)
serviceCal = discovery.build('calendar', 'v3', http=http)

When you need to access calendar you use the calendar service when you need to access drive you use the drive service.

查看更多
Lonely孤独者°
3楼-- · 2019-07-19 01:46

Add scopes into a list object.

Example:

SCOPES = ['https://www.googleapis.com/auth/calendar',
          'https://www.googleapis.com/auth/drive.metadata.readonly']
查看更多
登录 后发表回答