You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I dont think this (rp) library supports refresh token. In rp_handler.py, method get_access_and_id_token, this line does get a refresh token from the op, in token_resp , when 'offline_access' is added to scopes.
I dont think this (rp) library supports refresh token. In rp_handler.py, method get_access_and_id_token, this line does get a refresh token from the op, in token_resp , when 'offline_access' is added to scopes.
779: token_resp = self.get_tokens(state, client=client)
However, the refresh token is not returned in the dictionary returned by that method, so I dont see how refresh token could be supported
787: return {"access_token": access_token, "id_token": id_token}
am I missing something? any direction would be appreciated
The text was updated successfully, but these errors were encountered: