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, I'm using the following code to connect to Harvest API and use a smart pagination system, but a syntax error "token identified expected" appears marking the access token section (from "Headers"). Could you please let me know what's wrong?
let
iterations = 10,
url =
"https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",[Headers=[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"]])),
FnGetOnePage =
(url) as record =>
let
Source = Json.Document(Web.Contents(url)),
data = try Source[data] otherwise null,
next = try Source[links][next] otherwise null,
res = [Data=data, Next=next]
in
res,
GeneratedList =
List.Generate(
()=>[i=0, res = FnGetOnePage(url)],
each [i]<iterations and [res][Data]<>null,
each [i=[i]+1, res = FnGetOnePage([res][Next])],
each [res][Data])
in
GeneratedList
Thanks,
Salvador
Solved! Go to Solution.
Hi @sbenzaquen ,
"url =
"https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",[Headers=[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"]]))"
This syntax is not correct in power query, ',' means the ending of a query statement, contents after ',' would be a new query statement, '))' are not be used in the statement.
Try to modify the query like this:
let
iterations = 10,
url ="https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",
header =
[Headers =
[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"
]
],
FnGetOnePage =
(url,header) =>
let
Source = Json.Document(Web.Contents(url,header)),
data = try Source[data] otherwise null,
next = try Source[links][next] otherwise null,
res = [Data=data, Next=next]
in
res,
GeneratedList =
List.Generate(
()=>[i=0, res = FnGetOnePage(url,header)],
each [i]<iterations and [res][Data]<>null,
each [i=[i]+1, res = FnGetOnePage([res][Next])],
each [res][Data])
in
GeneratedList
Here is an example syntax of using parameter in power query based on Web.Contents():
let
url = "https://api.powerbi.com/v1.0/myorg/datasets/" & "xxx",
header =
[ Headers =
[#"Authorization" = "Bearer xxx"]
],
Source = Json.Document(Web.Contents(url,header))
in
Source
Refer: THE HIDDEN GEMS OF THE FUNCTION WEB.CONTENTS()
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @sbenzaquen ,
"url =
"https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",[Headers=[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"]]))"
This syntax is not correct in power query, ',' means the ending of a query statement, contents after ',' would be a new query statement, '))' are not be used in the statement.
Try to modify the query like this:
let
iterations = 10,
url ="https://api.harvestapp.com/v2/time_entries?from=" & "2021-01-01&to=2021-07-31",
header =
[Headers =
[#"Harvest-Account-Id"="1051XXX", Authorization="Bearer 1846XXX.pt.-4C7p34XXXXXXXXX1dCRiBEgrmR8NOJ3SPgBBSwuwXZzp6dJ2jwi-gfg"
]
],
FnGetOnePage =
(url,header) =>
let
Source = Json.Document(Web.Contents(url,header)),
data = try Source[data] otherwise null,
next = try Source[links][next] otherwise null,
res = [Data=data, Next=next]
in
res,
GeneratedList =
List.Generate(
()=>[i=0, res = FnGetOnePage(url,header)],
each [i]<iterations and [res][Data]<>null,
each [i=[i]+1, res = FnGetOnePage([res][Next])],
each [res][Data])
in
GeneratedList
Here is an example syntax of using parameter in power query based on Web.Contents():
let
url = "https://api.powerbi.com/v1.0/myorg/datasets/" & "xxx",
header =
[ Headers =
[#"Authorization" = "Bearer xxx"]
],
Source = Json.Document(Web.Contents(url,header))
in
Source
Refer: THE HIDDEN GEMS OF THE FUNCTION WEB.CONTENTS()
Best Regards,
Community Support Team _ Yingjie Li
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 |