Skip to content

Instantly share code, notes, and snippets.

@alx-andru
Last active October 26, 2018 14:06
Show Gist options
  • Save alx-andru/dbd303e674b1ac9fc36091e1476667b6 to your computer and use it in GitHub Desktop.
Save alx-andru/dbd303e674b1ac9fc36091e1476667b6 to your computer and use it in GitHub Desktop.
Example renew-callback.html to be used with ng-oidc-client
<!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