We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
VITHIKA
9 years agoExplorer | Level 3
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..
...
Steve M.
Dropbox Staff
9 years agoOh, I also see /2-beta-2/ in your URL. I'm not sure whether that's still expected to work, but you should really switch to /2/. Again, the HTTP response would tell you if that's the problem.
Note that /create_folder has been deprecated in favor of /create_folder_v2, so I'd recommend switching to that too: https://www.dropbox.com/developers/documentation/http/documentation#files-create_folder_v2.
Note that /create_folder has been deprecated in favor of /create_folder_v2, so I'd recommend switching to that too: https://www.dropbox.com/developers/documentation/http/documentation#files-create_folder_v2.
VITHIKA
9 years agoExplorer | Level 3
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-DB9 years ago
Dropbox Community Moderator
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
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!