Last active
October 26, 2018 14:06
-
-
Save alx-andru/dbd303e674b1ac9fc36091e1476667b6 to your computer and use it in GitHub Desktop.
Example renew-callback.html to be used with ng-oidc-client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Renew Callback</title> | |
| <link rel="icon" | |
| type="image/x-icon" | |
| href="favicon.png"> | |
| </head> | |
| <body> | |
| <script src="oidc-client.min.js"></script> | |
| <script> | |
| new Oidc.UserManager().signinSilentCallback().catch(function (e) { | |
| console.error(e); | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment