Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I'm having issues connecting to an API using Oauth2 authentifiation, as it generates the error (400) Bad Request.
I tried to download Fiddler, and I'm not really sure how to use it.. Any help here would be much appreciated.
Here's an example from the documentation (Javascript):
var xmlhttprequest = new XMLHttpRequest(); xmlhttprequest.open("POST", "https://demo.fatman.fi/identity/connect/token", false); xmlhttprequest.setRequestHeader("Authorization", "Basic YWIzMWY4NmM0YzE2NGUxZWE3M2EyNGU3NDE1MTM0Yjk6UnlTUFJKamgzaEZnS3dsYVY4Vjh1dTQ 4VQ=="); xmlhttprequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded") xmlhttprequest.send("grant_type=client_credentials&scope=api") xmlhttprequest.responseTex
Here's the M code:
let
apiUrl = "https://demo.fatman.fi/identity/connect/token",
options = [Content =Text.ToBinary("grant_type=client_credentials&scope=api"),
Headers= [
#"Authorization"="Basic xxxxxxxx",
#"Content-Type"="application/x-www-form-urlencoded"]
],
result = Web.Contents(apiUrl, options)
in
result
Thanks!
Solved! Go to Solution.
I had a little time to revisit the code, and noticed I had left the "<>" marks for the base hashing. I simply removed them, and now it works. Thanks for the help!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!