Good morning! I setup supertokens and I am testing...
# support-questions-legacy
r
Good morning! I setup supertokens and I am testing it using "Login with Github" feature. I have two questions: First of all, I can not revoke user session. When I revoke session from backend dashboard, I still seems to be logged in in client level (/auth redirects me to the main page). I have to remove tokens manually from browser storage. Second: Authenticated user in the dashboard seems to be logged in as johndoe@supertokens.com (?). I initialized
UserMetadata.init()
and gave full access to user data
Github({ scope: ['user'] })
r
hey @revolutionwhales
The session verification is stateless - so revoking the session offline (via the dashboard) will only take effect once the user's session is refreshed. If you want instant revocation, checkout the section in our docs about blacklisting tokens
I didn't understand your second question
r
This is how user profile looks like after Login with Github
r
So you need to add the metadata from github to the usermetadata recipe yourself (in post sign up override maybe)
r
All right I get it now! Thank you