Forum Discussion
jony dept
Jun 08, 2017Copper Contributor
Microsoft Graph API oAuth
Hello All, I am trying to authenticate my azure application with oAuth api. I could not able to do it. Hello.Js is throwing error of 'Cannot read response_type property of undefined'. Can...
rutu chudasama
Sep 05, 2017Copper Contributor
Please change Like below in /public/scripts/config.js
var APPLICATION_CONFIG = {
clientID: "ENTER_YOUR_CLIENT_ID",
redirectUri: "https://localhost:8080/",
interactionMode: "popUp",
graphEndpoint: "https://graph.microsoft.com/v1.6/yourtenentid.onmicrosoft.com/me",
graphScopes: ["openid"]
};
And response_type should be id_token
then check.
Hope it will do.