这是我的客户端配置:
const settings = {
userStore: new WebStorageStateStore({ store: window.localStorage }),
client_id: 'authtest',
automaticSilentRenew: true,
accessTokenExpiringNotificationTime: 10,
response_type: 'code',
scope: 'openid profile email offline_access',
};
静默刷新页面是静态html页面
<!DOCTYPE html>
<html>
<head>
<title>Silent Renew Token</title>
</head>
<body>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/oidc-client/1.11.5/oidc-client.min.js"
integrity="sha512-pGtU1n/6GJ8fu6bjYVGIOT9Dphaw5IWPwVlqkpvVgqBxFkvdNbytUh0H8AP15NYF777P4D3XEeA/uDWFCpSQ1g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script>
console.log('renewing tokens');
new Oidc.UserManager({
userStore: new Oidc.WebStorageStateStore({ store: window.localStorage }),
}).signinSilentCallback();
</script>
</body>
</html>
这应该是这样的吗?在此测试期间,我的
[PersistedGrant]
表增长得非常快(每 50 秒 6 条记录)。问题是什么以及如何解决?
我也有同样的问题。 原因是组合
accessToken
使用寿命和 accessTokenExpiringNotificationTime
。 accessToken
使用寿命:60秒accessTokenExpiringNotificationTime
:10
accessToken
到期前 10 秒,客户致电
/token