silentref.html 331 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>刷新token</title>
  6. </head>
  7. <body>
  8. <h1>刷新token中...</h1>
  9. </body>
  10. </html>
  11. <script src="../lib/"></script>
  12. <script>
  13. new Oidc.UserManager().signinSilentCallback()
  14. .catch((err) => {
  15. console.log("refresh", err);
  16. });
  17. </script>