Forum Discussion
jnickell
5 years agoHelper V
Assistance with converting CURL request into PowerQuery
I have a successful CURL request to Box.com's API, but I'm uncertain how to translate that into a successful PowerQuery statement. curl --location --request "POST" --header "Content-Type: applicat...
- 5 years ago
I guess sleep is a good thing. I took another look at this forum post and was able get a working configuration in my situation as well.
https://community.powerbi.com/t5/Desktop/requests-to-a-JWT-API-token/td-p/1097823The difference was changing
Content=Json.FromValue(PostBodyEncoded)to
Content=Text.ToBinary(PostBodyEncoded)
jnickell
5 years agoHelper V
I guess sleep is a good thing. I took another look at this forum post and was able get a working configuration in my situation as well.
https://community.powerbi.com/t5/Desktop/requests-to-a-JWT-API-token/td-p/1097823
The difference was changing
Content=Json.FromValue(PostBodyEncoded)to
Content=Text.ToBinary(PostBodyEncoded)