Need to see if your shared folder is taking up space on your dropbox 👨‍💻? Find out how to check here.

Forum Discussion

jmccolgan93's avatar
jmccolgan93
Explorer | Level 3
7 years ago
Solved

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);
         }
     })

2 Replies

Replies have been turned off for this discussion
  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    7 years ago

    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);
         }
     })

About Dropbox API Support & Feedback

Node avatar for 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!