Last active
July 5, 2019 13:09
-
-
Save rhysgodfrey/317ce4322af10686a2b7f6eb09ec840e to your computer and use it in GitHub Desktop.
This file contains 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
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