We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
Forum Discussion
IsaacMarin
5 years agoHelpful | Level 6
Using API to get list folder
Hi!
I am trying to use Matlab to get the contents of a folder, my code is:
% Generate the custom header
headerFields = {'Authorization', ['Bearer ', dropboxAccessToken]};
headerFields{2,1} = 'Content-Type';
headerFields{2,2} = 'application/json';
headerFields = string(headerFields);
% Set the options for WEBWRITE
opt = weboptions;
opt.MediaType = 'application/json';
opt.CharacterEncoding = 'ISO-8859-1';
opt.RequestMethod = 'post';
opt.KeyName='data';
opt.KeyValue='{"path": "" , "recursive":true}';
opt.HeaderFields = headerFields;
%Get data
rawData = webread('https://api.dropboxapi.com/2/files/list_folder',opt');
but I am getting "The server returned the status 400 with message "Bad Request" in response to the request".
What am I doing wrong?
Thank you
Nevermind, I decided to use this code and worked https://www.mathworks.com/matlabcentral/fileexchange/35693-urlread2
Thank you
2 Replies
- Greg-DB5 years ago
Dropbox Community Moderator
Can you also print out the response body? It should contain a more useful error message.
- IsaacMarin5 years agoHelpful | Level 6
Nevermind, I decided to use this code and worked https://www.mathworks.com/matlabcentral/fileexchange/35693-urlread2
Thank you
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,036 PostsLatest Activity: 6 hours ago
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 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!