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
@pezhman991 this is not implemented at the moment but maybe I should, but for now you have two options to get token info:
you can extend Svycka\SocialUser\OAuth2\GrantType\Google and implement Svycka\SocialUser\UserProfileInterface with data you need.
You can use token from request parameters as it is JWT token and for example, decode it with libraries provided here https://jwt.io/ or just using base64_decode() php function if you do this after user authentication.
if we could use https://accounts.google.com/.well-known/openid-configuration certs from google we could check token locally. I think they changing once a day or something so I could cache them.
The text was updated successfully, but these errors were encountered: