Skip to content

Instantly share code, notes, and snippets.

@rhysgodfrey
Last active July 5, 2019 13:09
Show Gist options
  • Save rhysgodfrey/317ce4322af10686a2b7f6eb09ec840e to your computer and use it in GitHub Desktop.
Save rhysgodfrey/317ce4322af10686a2b7f6eb09ec840e to your computer and use it in GitHub Desktop.
var SITE_URL = "https://theurlofyourwebsitethisisrunningon.com";
var IDENTITY_URL = "https://youridentityserver.com/";
var config = {
authority: IDENTITY_URL,
client_id: "YourClientId",
loadUserInfo : true,
post_logout_redirect_uri : SITE_URL + "/your-logout-callback-path",
redirect_uri: SITE_URL + "/your-callback-path",
response_type: "code",
scope: "openid profile yourscope"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment