Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
deebee_it
7 years agoHelpful | Level 5
Error in call to API function "files/list_folder": request body: could not decode input as JSON
Good morning, I do this request with Arduino: client.print(String("POST /2/files/list_folder HTTP/1.1\r\n") + "Host: api.dropboxapi.com" + "User-Agent: ESP8266/Ard...
- 6 years ago
FOUND!
I used static IP:162.125.5.7to access the server.
Probably Drobbox changed the IP a few days ago.
Now I switched to
api.dropboxapi.comand everything works like a charm.Thank you for the support! :)
Здравко
6 years agoLegendary | Level 20
Hi deebee_it,
You haven't mentioned what is the exact "MYPATH".
First: Are you sure the path, you are referring to, exists?
Second: You are relying on utf-8 encoding. Take in mind that Dropbox interpret all JSON input as a ASCII string, the encoding set is ignored! If you are using some simbol(s) outside ASCII set, make sure they are JSON-encoded (\uXXXX, where XXXX is hexdecimal unicode code point).
PS: By the way, you have put in your expression too many, meaningless string additions. Better do some of them join to each other (for example: "Host: api.dropboxapi.com" + "\r\n" could become "Host: api.dropboxapi.com\r\n") and remove the pluses between literals string on different lines (they gonna concatente to each other at compile time). Use pluses only where needed. 😉 In such a way lot of resources gonna be saved and the application speeds up.
Здравко
6 years agoLegendary | Level 20
Seems http format is acceptable, but what about path existence? For example, you can check the root folder list results on Dropbox API Explorer with empty path and the same access token used here. Does the "glucose" folder appear in the result? 🤔 If Yes, continue the check recursively.
- deebee_it6 years agoHelpful | Level 5
The path exists: I looked directly in my account and I access it with no problem using a js web page!
I tried editing the token in my Arduino call, using a random dummy token... And the error is the same: 4xx... not found...
I thought that the error should be different, or not? :|
- deebee_it6 years agoHelpful | Level 5
Here is the request header of the js web page (that works well OK):
POST /2/files/list_folder HTTP/2 Host: api.dropboxapi.com User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0 Accept: */* Accept-Language: it-IT,it;q=0.8,en-US;q=0.5,en;q=0.3 Accept-Encoding: gzip, deflate, br Authorization: Bearer xxxxxxxx Content-Type: application/json Content-Length: 33 Origin: https://xxxx Connection: keep-alive Referer: https://xxxx TE: Trailers
And the request:
{"path":"/glucose/202011/10/09/"} - Здравко6 years agoLegendary | Level 20
Did you check what I have advised above or not? Notice different token could have different access on same account!
- deebee_it6 years agoHelpful | Level 5
Yes, with "Dropbox API Explorer • list_folder" and the *same* token and same path, the call is right.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!