uploading files to Dropbox, bypassing authorization page? - dropbox

I have a form with some upload file fields, and I want to store the files in a Dropbox folder. However, the API always asks you to register before uploading files.
Does anyone knows how to do it without having to go through the authorization page ??
I would like to click upload, and directly upload the file to my repository.

Related

how to authincate dropbox login into a website then make the user choose files to import

how to authincate dropbox login into a website then make the user choose files to import.
I have Dropbox Javascript SDK. I just wanna know what kind of options available to do that.
I'm thinking of
1- authenticate the account dropbox of the user and when he selects the folder to import someway I download the folder into the website's host
2- The user share the link of the folder and then I download it with Curl into the host
3- Or can I share a folder and preview the content of this folder into the website
Overall the biggest concern is to save duplicates Uploads.
What are options to do such a thing using JS SDK or PHP.

How to save a file from Dropbox link in my Dropbox

If my client choose a file from Dropbox using Dropbox Chooser and we have a link like https://dl.dropboxusercontent.com/1/view/og7hvjnt7p57jjw/Penguins.jpg. Now if client removes file from his Dropbox account we have nothing so my question is how can I add this file to my Dropbox using PHP instead of Dropbox Saver?
You can use a normal HTTP GET request to download the file from the link while the link is still valid. (Note, the "direct" link type you have in your question expires after four hours.)
Then, you can use the Dropbox API to upload the file to your own Dropbox account:
https://www.dropbox.com/developers/documentation/http/documentation#files-upload

Can I upload files from a custom website form to Dropbox?

I have clients uploading files directly to my Dropbox folder. I was curious if I can build a website form that uploads the file to my Dropbox folder and also saves the forms data to my server with a reference to the file that was uploaded to Dropbox? They are legal documents and I don't want to worry about security if Dropbox handles that.
It looks like it should definitely be possible.
You would have to use the dropbox api:
https://www.dropbox.com/developers
https://github.com/dropbox/dropbox-js
There are some javascript examples that would likely be what you would need to go directly to dropbox without going to your server first.

Using dropbox Chooser drop-in to retrieve a non-expiring link to files

I would like to use the Chooser drop-in to select a file from dropbox and then synchronize my app with that file occasionally in the background.
https://www.dropbox.com/developers/dropins/chooser/js
A scenario would be:
List item
User selects file.
File uploads to my app.
User returns to my app a few days later after modifying the file in dropbox.
My app should synchronize and pull down that particular file (without again displaying the Chooser drop-in).
The problem is that the Chooser provides an expiring link to the file:
"direct" is an expiring link to download the contents of the file
I can use the Core API exclusively which would work, however I would have to build my own UI to browse the user's dropbox directory. Ideally, I'd prefer to not introduce the world to another file browser; Dropbox has a file browser - and people are familiar with it. Is this possible?
Thanks,
You can just get a preview link and convert it. See https://www.dropbox.com/developers/blog/53/programmatically-download-content-from-share-links.

How to upload file from my iphone application to user own dropbox?

I had created an iphone application witch can generate a pdf file when the user use the application.
how can the user have the option to sent the pdf file to his own dropbox?
I had tryed with dropbox examples: where i can make an api and upload to my own dropbox.
But it's not what i want.
I want my application to do so: when the user generates a pdf file, so the login box of dropbox apear so he can log in and upload the file automaticaly to his own dropbox.
I have google it, but i did't get any examples including this solution.
Please help me if you can.
Have you looked at this blog post that i think describes what you are looking for.
http://www.drdobbs.com/tools/working-with-dropbox/232600482?pgno=1