英文:
how to add expire to a consent in spring-authorization-server?
问题
当我同意授权时,我永远不需要重新授权。
我希望它在一段时间内有效(比如一个月)。
如何实现这一点?
英文:
when I agreed to an authorization,I never need to re authorize.
I want it will be valid for a period of time(like one month).
How to achieve it?
答案1
得分: 0
一种实现这个的方法是实现一个自定义的 OAuth2AuthorizationConsentService
,并将同意存储在 Redis 中,带有 TTL(生存时间)。
英文:
One way to achieve this would to be implement a custom OAuth2AuthorizationConsentService
that stores the consent in Redis with a TTL (time-to-live).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论