Id token (which is used as bearer token) does not get expire after user is logged out.

0

After user logs out of the system the bearer token is not invalidated automatically. I can still use the token to access the resources. For sign out I'm using amplify auth.signout(). Does invalidating refresh token invalidates id token? is there any way to invalidate id token. jwt.verify() is still passing the request after I tried invalidating refresh token. Any solution. I dont want to use global signout.

2 Answers
1

Does invalidating refresh token invalidates id token?

When you call amplify.auth.signout(), this particular method is used to sign out the currently authenticated user from the application. When a user signs out, their session is invalidated, and they will need to authenticate again to access any resources or features that require authentication.

You can also sign out users from all devices by performing a global sign-out. This will also invalidate all refresh tokens issued to a user. The user's current access and ID tokens will remain valid on other devices until the refresh token expires (access and ID tokens expire one hour after they are issued).

amplify.auth.signout({ global: true })

Key souces:

profile picture
EXPERT
answered 22 days ago
profile picture
EXPERT
reviewed 21 days ago
1

Hi,

As described on the AWS documentation, JWT tokens, such as access_token and id_token, are self-contained with a signature and expiration time that was assigned when the token was created.

Therefore, revoked tokens will still be valid if they are verified using any JWT library that only verifies the signature and expiration of the token, which is the most common method.

profile picture
EXPERT
answered 22 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions