I'm using the system browser for authentication. Identity Provider - Google
Steps
1 - user gets authorized by entering user name and password. I get the authentication_code at this point.
2 - I call the token end point and get access token, id token and refresh token.
When the ID token expires, I need to get a new valid ID token. I need to do this without prompting the user to enter a his credentials.
Question - Is it possible to get a new id token without prompting the user? Refresh token does not always return an ID token and its not a guaranteed behavior according to the open id specification
Tried Solution
Calling the authorization end point with "prompt=none,login_hint=username". This still redirects to the browser and comes back to the app.
Responses with an error
AuthorizationException: {"type":1,"code":1008,"error":"interaction_required"}