Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello everyone! I've been trying to work with a datasource from an API that requires basic auth. The post request is as follows:
url = <url>,
postData = <request body>,
headers = [#"Authorization" = <encoded basic auth>],
response = Web.Contents(
url,
[
RelativePath = <path>,
Headers = headers,
Content = Text.ToBinary(postData)
]
)
Ive run this data source using anonymous authentication on power bi desktop and it works with no problem. After publishing this report, however, power bi service won't work with anonymous auth since this API enforces authentication. Checking the "skip test connection" option wont help, as the PBI service will still attempt to authenticate with the API, as shown on the print below:
Is there a way to make this work without building a custom connector?
Solved! Go to Solution.
Hi, Charlotte, thanks a lot for the reply!
I did include the basic authorization option in the header, but still couldnt validate credentials for the data source, even when selecting to skip it. I figured out what was wrong though, it turns out that the web api that I am trying to use is not public and can only be accessed through a local network, meaning power bi service needed to go through my personal gateway to access the data source. What solved the problem was selecting the "Skip test connection" on the settings tab of the gateway, not in the data source credentials.
Hi, Charlotte, thanks a lot for the reply!
I did include the basic authorization option in the header, but still couldnt validate credentials for the data source, even when selecting to skip it. I figured out what was wrong though, it turns out that the web api that I am trying to use is not public and can only be accessed through a local network, meaning power bi service needed to go through my personal gateway to access the data source. What solved the problem was selecting the "Skip test connection" on the settings tab of the gateway, not in the data source credentials.
Hi, @Anonymous
If the API requires basic authentication, you will need to provide the necessary credentials in your POST request. One way to do this is to include the credentials in the header of the request. Here is an example of how you can do this in Power BI:
let headers = [
Authorization = "Basic " & Binary.ToText(Text.ToBinary("username:password"), 0)
]
Replace "username" and "password" with your actual credentials. This code will create a header with the appropriate credentials.
let
url = "https://api.example.com",
body = "{""key"":""value""}",
headers = [
Authorization = "Basic " & Binary.ToText(Text.ToBinary("username:password"), 0)
],
options = [
Headers = headers,
Content = Text.ToBinary(body),
ManualStatusHandling = {400}
],
result = Web.Contents(url, options)
in
result
This code will send the POST request with the appropriate headers.
Once you have made these changes, save and publish the report to Power BI Service. The report should now be able to authenticate with the API using the provided credentials.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
57 | |
28 | |
25 | |
22 | |
21 |
User | Count |
---|---|
63 | |
47 | |
24 | |
24 | |
18 |