I'm able to receive google id token with GoogleSignInAccount.getIdToken()
thereby I have few questions on how to deal with it
- Token is about 1kb string.I can't send it with each server request.So what is the correct way how can I validate it on serverside?
- I see no methods for refreshing id token.Does this happen automaticaly within GoogleSignInAccount class?
- Is there any limitation(quota) on token verification from google's side?
1.To not overload server we decided to generate internal(short) access token with the same expiration time(1 hour)
2.Token refresh can be achieved by calling login function again:
3.Still didn't find an answer