Forum Discussion
dparkinson
10 years agoAdvocate I
Authentication Pain - adal-node
Hi, I'm trying to authenticate with Azure AD to access the Power BI APIs, but having some trouble. I'm using adal-node to write a console app that uses the server to server via client credent...
alexsilvar
8 years agoFrequent Visitor
You should use the authorityHostUrl like this:
var authorityHostUrl = 'https://login.microsoftonline.com/'; var tenant = 'yourtenant.com'; var uri = authorityHostUrl + '/' + tenant;
...
var context = new adal.AuthenticationContext(uri);//Start adal context
([G]old)
duncfair
8 years agoHelper IV
Could you please elaborate on this? I am frustrated with the lack of granularity of the refresh process and would like to kick off a dataset refresh via powershell after I complete a number of ETL processes.