Reputation: 33
Trying to make a web app where others can view my availability and schedule an apt with me...so it will be them on their computer on my site. I can do the Oath just fine for me...but when someone else visits the site, it is just for their calendar. I can't seem to find anything on how to make it show my calendar. I've gone up and down the Google Calendar API page but can't seem to figure out how to make the user fixed on the api calls. Any help would be greatly appreciated!
Upvotes: 2
Views: 1142
Reputation: 3782
You can create a service account, share your calendar read-write with this service account and then have this service account always be the authenticated user (instead of using Oauth). More on service accounts: https://developers.google.com/identity/protocols/OAuth2ServiceAccount
Upvotes: 1