You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After launch, when the redirect URL is accessed, the "code" is undefined, I do get a valid "state" value, the authorization server did not authorize my access. How do I debug this, what did I miss?
<script>
// get the URL parameters received from the authorization server
var state = getUrlParameter("state"); // session key, this is valid
var code = getUrlParameter("code"); // authorization code, It is Undefined.
console.log("state " + state + ", code " + code);
Thx!
The text was updated successfully, but these errors were encountered:
Hi,
I am copying code from http://docs.smarthealthit.org/tutorials/authorization/
After launch, when the redirect URL is accessed, the "code" is undefined, I do get a valid "state" value, the authorization server did not authorize my access. How do I debug this, what did I miss?
Thx!
The text was updated successfully, but these errors were encountered: