Forum Discussion
navinrangar
3 years agoHelper II
Azure AD App Authentication 'scope doesn't exist on app' with power-bi APIs
I intend to call Powerbi APIs in my react app. For this, I need to dynamically generate an access token. And to generate that access token, I have registered my azure ad app. Have given all t...
navinrangar
3 years agoHelper II
if we set any scope our azure ad app endpoint, then by default it is treated as a Microsoft graph scope. so to mention powerbi API scope, we need to define our scope w/ this hostname: https://analysis.windows.net/powerbi/api/{scope_you_want}
in my case i wanted dataset.readwrite.all so i defined my scope as https://analysis.windows.net/powerbi/api/Dataset.ReadWrite.All
this answer helped me a lot.