Forum Discussion
EiA
4 years agoFrequent Visitor
Accessing Planday API with M
Hi, I am trying to access the APIs of Planday (explained in detail here) from Power Query, but I have some issues authenticating to get the access token. The relevant info about the API: Bef...
- 4 years ago
Use Fiddler or similar to inspect the packet you are sending for any other potential format issues. APIs often expect the payload base64 encoded etc.
lbendlin
4 years agoSuper User
Body: client_id=CLIENT_ID&grant_type=refresh_token&refresh_token=TOKEN
you are using comma (,) instead of ampersand (&) in your implementation.
- EiA4 years agoFrequent Visitor
Thanks for getting back to me on this lbendlin , but unfortunately it still gives the same 400-error. Any other suggestions?
- lbendlin4 years agoSuper User
Use Fiddler or similar to inspect the packet you are sending for any other potential format issues. APIs often expect the payload base64 encoded etc.