Forum Discussion
Anonymous
3 years agoNot applicable
Issues with dynamic token: dynamic data sources aren't refreshed in the Power BI service, this datas
Hi all, I trying to fetch data via API which needed dynamic token; I am successful in retriving data in Power BI desktop but when I publish the same on Power BI Service I am getting an error (when r...
- Anonymous3 years ago
I got the solution from Curbals youtube video.
all dynamic parts must be added as query then it will work.
Json.Document(Web.Contents(DataURL,
[
RelativePath = "performance?",
Query = [
startDate=sDt,
endDate=eDt
],
Headers=[Authorization="Bearer " & Token()]
]))
Anonymous
3 years agoNot applicable
I got the solution from Curbals youtube video.
all dynamic parts must be added as query then it will work.
Json.Document(Web.Contents(DataURL,
[
RelativePath = "performance?",
Query = [
startDate=sDt,
endDate=eDt
],
Headers=[Authorization="Bearer " & Token()]
]))
Syndicate_Admin
Administrator
2 years agoHello, I have a very similar problem when putting a dynamic hour directly in my query, could you tell me what is the link of the curbals video you are talking about?