I have user logged in by google by regular app with implicit flow.
I created m2m application and obtained management token.
Now I send request about user
https://preciselab.eu.auth0.com/api/v2/users/google-oauth2%7C111933984350447610620
and have only access_token, no refresh_token from google
{
"provider": "google-oauth2",
"access_token": "ya29.a0ARrdaM9DcSJBngl_ebFljROJGr3d1Ys2ooe6",
"expires_in": 3599,
"user_id": "111933984350447610620",
"connection": "google-oauth2",
"isSocial": true
}
I need refresh token, because of after expiration time access_token do not works in emails synchronization by gmail, but with refresh token I should be able to sync email longer time than one hour.
