You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
jmccolgan93
6 years agoExplorer | Level 3
list_folder issues
Hey guys, bare with me... I'm new to this.
so I'm trying to use the list_folder function. when I test my code I get an error of "Error in call to API function "files/list_folder": request body: could not decode input as JSON"
can you point in the right direction so I can understand and learn what I'm doing wrong...
thanks for the help!
$.ajax({ url: 'https://api.dropboxapi.com/2/files/list_folder', type: 'POST', processData: false, contentType: 'application/json', path: "/MIG/Projects/Hippo content Watermark/4K", headers: { "Authorization": "Bearer <REMOVED_FOR_THIS_POST>", }, success: function (data) { console.log(data); }, error: function (error) { console.log(error); } })
The /2/files/list_folder endpoint is an RPC-style endpoint, meaning it expects the API call parameters as JSON in the request body. In the code you shared, it looks like you're trying to pass the "path" parameter as a parameter to the "ajax" method itself.
Instead, you probably want to do something like this:
$.ajax({ url: 'https://api.dropboxapi.com/2/files/list_folder', type: 'POST', processData: false, contentType: 'application/json', data: JSON.stringify({"path": "/MIG/Projects/Hippo content Watermark/4K"}), headers: { "Authorization": "Bearer <ACCESS_TOKEN>", }, success: function (data) { console.log(data); }, error: function (error) { console.log(error); } })
- Greg-DBDropbox Staff
The /2/files/list_folder endpoint is an RPC-style endpoint, meaning it expects the API call parameters as JSON in the request body. In the code you shared, it looks like you're trying to pass the "path" parameter as a parameter to the "ajax" method itself.
Instead, you probably want to do something like this:
$.ajax({ url: 'https://api.dropboxapi.com/2/files/list_folder', type: 'POST', processData: false, contentType: 'application/json', data: JSON.stringify({"path": "/MIG/Projects/Hippo content Watermark/4K"}), headers: { "Authorization": "Bearer <ACCESS_TOKEN>", }, success: function (data) { console.log(data); }, error: function (error) { console.log(error); } })
- jmccolgan93Explorer | Level 3
thank you Greg! that worked perfectly!
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 4 hours agoIf 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 or Facebook.
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!