OIDC客户端多次静默刷新

问题描述 投票:0回答:2

这是我的客户端配置:

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>

我想检查一下它到底是如何工作的,但有一些奇怪的事情: token request is being sent multiple times (6x)

这应该是这样的吗?在此测试期间,我的

[PersistedGrant]
表增长得非常快(每 50 秒 6 条记录)。问题是什么以及如何解决?

javascript vue.js identityserver4 openid-connect oidc-client-js
2个回答
0
投票

我也有同样的问题。 原因是组合

accessToken
使用寿命和
accessTokenExpiringNotificationTime

对于你的情况:
accessToken
使用寿命:60
accessTokenExpiringNotificationTime
10

accessToken

 到期前 10 秒,客户致电 
/token

    


0
投票
@Cezar 嗨,我也面临着同样的问题。这个案子你们解决了吗?能否告知如何解决。先谢谢你了

© www.soinside.com 2019 - 2024. All rights reserved.