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
While hooking up an Angular2 app to Azure Active Directory, I hit a error where I was told that 'resource' is a required field after calling this.oauthService.fetchTokenUsingPasswordFlowAndLoadUserProfile().
AADSTS90014: The request body must contain the following parameter: 'resource'
From my javascript debugger, if I force-fed that query parameter in at oauth-service.ts:544, it would then process correctly.
The parameters in the token request don't include 'resource', so it would be good to include it, if it is set/available.
The text was updated successfully, but these errors were encountered:
While hooking up an Angular2 app to Azure Active Directory, I hit a error where I was told that 'resource' is a required field after calling this.oauthService.fetchTokenUsingPasswordFlowAndLoadUserProfile().
AADSTS90014: The request body must contain the following parameter: 'resource'
From my javascript debugger, if I force-fed that query parameter in at oauth-service.ts:544, it would then process correctly.
The parameters in the token request don't include 'resource', so it would be good to include it, if it is set/available.
The text was updated successfully, but these errors were encountered: