12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>登录回调</title>
- </head>
- <body>
- <p>登录中....</p>
- <script src="./lib/oidc-client.js"></script>
- <script>
- new Oidc.UserManager()
- .signinRedirectCallback()
- .then(function (user) {
- window.location = user.state;
- })
- .catch(function (e) {
- console.error(e);
- });
- </script>
- </body>
- </html>
|