Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi All,
I am currently facing an issue where I need to invoke a REST web service using basic authorization, sending a POST request with a payload.
I tried to follow the following guide: https://community.fabric.microsoft.com/t5/Service/POST-request-data-sources-that-require-basic-authe...
And modified the following code with the endpoint URL, JSON body, and credentials that I should be sending:
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
However, I always receive the following error: DataSource.Error: Web.Contents with the Content option is only supported when connecting anonymously.
When I go to the data source settings and choose anonymous authorization, I get the following error message: We couldn't authenticate with the credentials provided, please try again.
I am able to successfully pull the data I need using SoapUI, and am only facing this issue in Power BI. Any help would be appreciated.
Hi @Anonymous
Based the information you have offered, you need to get credential first, you can refer to the following link.
How to Authenticate to a REST API with basic Authe... - Microsoft Fabric Community
The link supply the similar problems.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |