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
access_token
REQUIRED. The access token issued by the authorization server.
Because it's REQUIRED, TokenResponse::token_type() can be defined to return &str. This could be changed, but it would require either:
Changing token_type() to return Option<&str> instead (breaking change)
Changing token_type() to return "" instead of returning an error (non-breaking change), and return an Option<&str> on a separate method to access the "real" value.
I'm unlikely to develop and test those changes on my own, but I would be inclined to accept a PR.
I'm trying to implement VK OAuth2, but their API responds with JSON like this (idk why, they even put a link to OAuth specs):
So I need a way to get an access token, but I get this error right now:
How can get around with this?
The text was updated successfully, but these errors were encountered: