Forum Discussion
MyThumbsClick
2 years agoHelper II
API auth - Use parameter instead of Data Source Setting GUI
Hi All Very new to Power BI but slowly figuring things out. I have a json API source that currently uses a web source and Basic authentication via the Data Source GUI. This works great. Usernam...
- 2 years ago
change your data source settings to anonymous auth.
MyThumbsClick
2 years agoHelper II
That was a typo in my post. Heres what it currently looks like:
let
Source = Json.Document(Web.Contents(FreshserviceBaseURL,
[RelativePath="tickets",
Headers=[Authorization="Basic " & FreshserviceAuthHeader]]))
in
Source
lbendlin
2 years agoSuper User
change your data source settings to anonymous auth.
- MyThumbsClick2 years agoHelper II
Ok, Looking at this with fresh eyes, setting to anonymous auth does do the trick. Thank you for your help!