My application have social media authentication by using google+ and facebook. application use google calendar. From application user can add, edit, delete the events. So when user login with google+ there is no problem But when user login with facebook the user need to login with google+ for calendar interaction but i want user to be authenticated for google+ only at once i.e for the first time.Next time when user logs in with facebook he should not need to login with google+ for add,edit, delete calendar. How can I implement this?
相关问题
- Is service account in google calendar api v3 the r
- Android: Google Drive onActivityResult() getting r
- Insert event into google calendar with php
- Get meeting link with Google calendar api
- gdata Unknown authorization header - started 12/11
相关文章
- Google Calendar - Permission to Access
- How to use Google application-specific password in
- Is there direct API for Google Meet?
- How to access Google feeds(Reader) with OAuth2.0?
- Adding a google calendar event in swift
- Android giving IOException with 'unable to cre
- Insert event to google calendar nodejs
- Google Calendar API algorithm to find open time sl
You should safely store the refresh token that you get when the user first grants access to your app. Afterwards you can use this refresh tokens to obtain new tokens any time if the previous Oauth tokens have expired.
https://developers.google.com/accounts/docs/OAuth2