Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
pep11
8 years agoExplorer | Level 3
Create a form to upload file to Dropbox file request folder
I am completely new to API development having only limited coding experience. My goal is to create a form that allows the user to upload a file to a Dropbox file request folder. If Dropbox file reque...
Greg-DB
Dropbox Community Moderator
8 years agoThe Dropbox API doesn't offer a way to programmatically upload to file requests, but I'll pass this along as a feature request.
You can use the Dropbox API to upload directly to a folder though, as long as your app is authorized to access the account. To upload programmatically, you can use /2/files/upload:
https://www.dropbox.com/developers/documentation/http/documentation#files-upload
That accepts the full path for where you want to put the uploaded file.
That's a link the documentation for the HTTPS endpoints themselves, but we recommend using one of the official SDKs if possible:
https://www.dropbox.com/developers/documentation
Those have corresponding native methods for the HTTPS endpoints.
I can't offer general data storage advice outside of using the Dropbox API though, and the "best way" would depend on the needs of your app anyway.
You can use the Dropbox API to upload directly to a folder though, as long as your app is authorized to access the account. To upload programmatically, you can use /2/files/upload:
https://www.dropbox.com/developers/documentation/http/documentation#files-upload
That accepts the full path for where you want to put the uploaded file.
That's a link the documentation for the HTTPS endpoints themselves, but we recommend using one of the official SDKs if possible:
https://www.dropbox.com/developers/documentation
Those have corresponding native methods for the HTTPS endpoints.
I can't offer general data storage advice outside of using the Dropbox API though, and the "best way" would depend on the needs of your app anyway.
- pep118 years agoExplorer | Level 3
Thanks Greg.
The goal is to have users upload jpgs via a form where those jpg files would be stored in my Dropbox along with a text file to correspond with the jpg.
My coding knowledge is at a beginner stage. Having never used the API, I think this is a bit advanced for my current state of knowledge. Even reading the documentation assumes a level of understanding to know what you're reading.
- buttflattery7 years agoExplorer | Level 4
one thing that i am confused about is that we need to upload file to our server first and then upload to dropbox folder, in case we are using a form and user provides a file via file input using file browse dialog. Then first we will upload the file to our server and then upload to dropbox if i am not wrong about it. there isnt any other way to bypass uploading to our server frist.
- Greg-DB7 years ago
Dropbox Community Moderator
buttflattery While Dropbox API still doesn't offer a way to programmatically upload to file requests, if you can run JavaScript in the browser, you could avoid uploading the file to your own server first, by uploading the file to Dropbox directly from the browser.
For instance, you can make the /2/files/upload call directly from the browser, as long as you have the access token client-side.
Or, even without having the access token client-side, you can have the server call /2/files/get_temporary_upload_link to get a temporary upload link, and then send that link to the client. The client can then upload directly to Dropbox via that link.
- spadgett6 years agoNew member | Level 2
This is an old thread but this is exactly what I have need of now. I'm working to figure out a homework repository for students and a photo file upload location for parents at our small private school. We have families working from home and I'm looking for a quick solution to this need. I signed up for Dropbox Pro and hope that file request will be a simple solution. I think I understand that I could do one of two very easy ways to manage the files 1) I could just do a Dropbox Showcase site and allow for upload there (I think, I'm sampling this), or I could just do the Google Form and include the request file link within the form. I don't like this option so much as most people will be using their cell phones to activate the link for uploading the file. But it would at least help me to match the files together with the uploads and will tell me which file repository was used. I do prefer to create a form with an upload link directly on it. Is this possible with Zapier somehow? Anyone have any suggestions? Did you figure out a solution to this post?
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!