Reputation: 1317
For my Python app,I had completed the basic settings to interact with google drive api and found it working by a test upload of a CSV file. Now I need to upload an image from a url to a newly created folder named 'myappname' in Google Drive.
Thanks in advance
Upvotes: 3
Views: 1921
Reputation: 2987
For now, there is no way you can directly upload file from url. There are two workaround I can think of
Using save to Drive button requires user interaction to click the button which might not be the one you want. In that case, downloading and uploading is the only way I can think of.
Upvotes: 2