Auth, How to force test an expired refreshToken? #2763
-
I have a refreshToken, and it shows an expiration value of How can I test if the refreshToken fails to authenticate, and I need to start a new session, (without waiting 90 days)? Can I just send bad data in the refreshToken, (i.e. edit the refreshToken string, change "eyJhbGciO..." to be "XXXXXXXXXXXXXX...") Then my code can branch and POST to "com.atproto.server.createSession" instead... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You should be able to revoke a refresh token using |
Beta Was this translation helpful? Give feedback.
You should be able to revoke a refresh token using
com.atproto.server.deleteSession
👍