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 個答案
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
專家
已回答 1 個月前
profile picture
專家
已審閱 1 個月前
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
專家
已回答 1 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南

相關內容