Last active
August 29, 2015 14:00
-
-
Save ChrisRisner/11187565 to your computer and use it in GitHub Desktop.
AzureAuthUpdate
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
'urn:microsoft:credentials': { | |
accessToken: ‘mytoken’ | |
} |
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 s1 = '{"alg":"HS256","typ":"JWT","kid":"0"}'; | |
var j2 = { | |
"exp": new Date().setUTCDate(new Date().getUTCDate() + 4000), | |
"iss":"urn:microsoft:windows-azure:zumo", | |
"ver":2, | |
"aud":aud, | |
"uid":userId | |
}; |
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 s1 = '{"alg":"HS256","typ":"JWT","kid":0}'; | |
var j2 = { | |
"exp": new Date().setUTCDate(new Date().getUTCDate() + 4000), | |
"iss":"urn:microsoft:windows-azure:zumo", | |
"ver":1, | |
"aud":aud, | |
"uid":userId | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment