Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hey Everyone,
I've tried my best to look up for a solution (same error was posted in https://www.pbiusergroup.com/communities/community-home/digestviewer/viewthread?MessageKey=7da6b52f-... but no answers at the end) to the below error on Power BI Service
I am currently running the query below to obtain an access token and utilize it on another URL to authorize and obtain the result I need.
let
GetJson = Web.Contents("https://login.***",
[
Headers = [#"Accept"="application/json",
#"Content-Type"="application/x-www-form-urlencoded;charset=UTF-8"],
Content = Text.ToBinary("grant_type=client_credentials&client_id=***&client_secret=***"),
RelativePath = "/realms/***/protocol/openid-connect/token"
]
),
FormatAsJson = Json.Document(GetJson),
#"Converted to Table" = Record.ToTable(FormatAsJson),
access_token = #"Converted to Table"{0}[Value],
source = Web.Contents("https://client-api.***/checklist-templates", [Headers=[Authorization="Bearer "&access_token,ContentType="application/json"]]),
Result = Json.Document(source),
#"Converted to Table2" = Record.ToTable(Result),
#"Expanded Value" = Table.ExpandListColumn(#"Converted to Table2", "Value"),
#"Expanded Value1" = Table.ExpandRecordColumn(#"Expanded Value", "Value", {"id", "name", "versions"}, {"id", "name.1", "versions"})
in
#"Expanded Value1"
and below are the two data source credentials that are generated from publishing the report
1.
2.
What am I doing wrong that PBI Service refuses to connect to the data source?
Cheers
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
39 | |
37 | |
32 | |
25 | |
24 |
User | Count |
---|---|
37 | |
29 | |
23 | |
21 | |
17 |