Issue
I'm developing an application where I need to set event reminders in multiple users' Google Calendars without explicitly asking for their permission. When exploring the Google Calendar API in Python, I encountered limitations due to privacy and security restrictions.
I'm seeking insights into whether it's possible to set reminders for users' events without direct access or explicit permission for each calendar. Any guidance, code examples, or alternative methods using the Google Calendar API or other approaches that might help achieve this functionality would be highly appreciated.
Solution
Google calendar data is private user data it is owned by a user. In order to access private user data you must have the consent of the user.
To use the Google calendar api to access private user data we use OAuth2 to request consent of the user to access that data.
So to address your use case.
I need to set event reminders in multiple users' Google Calendars without explicitly asking for their permission
You cant you need permission.
Answered By - Linda Lawton - DaImTo
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.