Forum Discussion

VITHIKA's avatar
VITHIKA
Explorer | Level 3
9 years ago

Create a folder

I want to create a folder as soon as the user login in the app,

i tried the following function to create folder but i can see no folder is created..

I am calling this function after the login..

 
CreateFolder()
  {

    let args={
    "path": "/Homework/math",
    "autorename": false
}
  
     let headers = new Headers();
    headers.append('Authorization','Bearer'+this.accessToken);
    headers.append('Dropbox-API-Arg', JSON.stringify(args));
    headers.append('Content-Type', 'application/json');
    console.log("created folder");
    return this.http.post('https://api.dropboxapi.com/2-beta-2/files/create_folder',{headers:headers});

  }
}



 
dropboxlogin()
{
this.dropbox.login().then((success) => {
this.navCtrl.push(DropboxloginPage);
      this.dropbox.CreateFolder();
    this.showToast("folder created");
}, (err) => {
console.log(err);
});
 
}
 

4 Replies

  • Steve M.'s avatar
    Steve M.
    Icon for Dropbox Staff rankDropbox Staff
    9 years ago
    What's the response from the server? Does the call succeed or fail? If it's failing, the response will probably tell you what's wrong.

    If I had to guess, it's `Bearer'+this.accessToken. You seem to be missing a space there... try 'Bearer '+this.accessToken instead.
  • VITHIKA's avatar
    VITHIKA
    Explorer | Level 3
    9 years ago

    I made the changes,but still I cannot find any folder created..I am getting the toast as alert created,but when I am opening the dropbox,I cannot find the new folder created...

     

     
    CreateFolder()
      {
    
        let args={
        "path": "/invoice",
        "autorename": false
    }
       //this.dropbox.filesCreateFolder(args);
         let headers = new Headers();
        headers.append('Authorization','Bearer '+this.accessToken);
        headers.append('Dropbox-API-Arg', JSON.stringify(args));
        headers.append('Content-Type', 'application/json');
        console.log("created folder");
        return this.http.post('https://api.dropboxapi.com/2/files/create_folder_v2',{headers:headers});
    
      }
    }
    
     

     

     

     

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    9 years ago

    What response are you getting from the API though? You need to check the API response to see if the call succeeded or not.

     

    Also, another thing I notice is that you're sending your parameters in the 'Dropbox-API-Arg' header, but /2/files/create_folder_v2 is an RPC style endpoint, so your parameters should be sent as JSON in the request body.

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!