unable to upload file on onedrive using OneDrive APIs - onedrive

Can any one help me.
I'm using OneDrive API's for upload files to OneDrive. But problem is that I have full path of file. How can I upload this file using OneDrive API's.
Basically, I have A link and full path of file which I need to upload file to OneDrive. How is this possible to upload file on click the link.

Related

Denied Access downloading file from google drive api

How to upload a file using the google drive api and when the file is getting opened it will not show a restriction message and allow any user to open it.
For example I have this URL
https://drive.google.com/file/d/1cvmvU-Tz66Z7x3ukHqLgoB9BY9pxftrn/view?usp=drivesdk
That was uploaded from the app but it got restricted.
You have the control to share files from Google Drive and upload files and folders to Google Drive.
You can share the files and folders that you store in Google Drive
with anyone in your work or school, but your organization may limit
how you can share files with other people.
Also, you can visit this help forum post on to what extent you can allow everyone to upload in your drive.
Additional reference: Drive API Documentation

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.

uploading files to Dropbox, bypassing authorization page?

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.

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