-
|
If I want to show the user their past authorizations, I need to remember their consent sessions. Because the client can refresh refresh tokens in perpetuity as long as they do so before each token expires, I need to remember forever. Is there a way to auto-forget consent sessions after all tokens descended from that consent session have expired (but no sooner)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Consent can’t really be forgotten based on that criterium. In fact, you usually want consent to be remembered (like login to be remembered) for as long as the scope changes, the app changes. Think of it like this, how often does GitHub ask you for consent when signing into CircleCI? Exactly once and then never again! Because consent is remembered:) |
Beta Was this translation helpful? Give feedback.
Consent can’t really be forgotten based on that criterium. In fact, you usually want consent to be remembered (like login to be remembered) for as long as the scope changes, the app changes. Think of it like this, how often does GitHub ask you for consent when signing into CircleCI? Exactly once and then never again! Because consent is remembered:)