I was wondering if its possible to access/display files like images which are stored in Google Drive on a public website.
|
|
A workaround is to get the fileId with Google Drive SDK API and then using this Url: https://drive.google.com/uc?export=download&id={fileId} That will be a permanent link to your file in Google Drive (image or anything else). |
|||||||||||||
|
|
Yes, it's possible. Provided that you put your files in a public folder, you can get any file in a folder by this URL:
|
|||||||||||||
|
|
I think it is possible but only for a short time What you have to do is set the Access Control List of the file to Public Read-Only (or Public Read/Write). You can do that programmatically using the Google Document List API, or manually through the "Share" button on the Drive image viewer. Then you can get the URL to the image programmatically by either using the Google Document List API or using the Google Drive API (i.e. file.getDownloadUrl() in Java). You can also easily get a link to the image manually by right clicking on the image in the Google Drive default image viewer. The problem is that this link has a limited time to live, so it will work for a little while and then stop working. Basically the URL of the image file stored in Drive should be accessible without any authentication once it has been set shared publicly but that URL is going to change at some point. We might find a solution to this in the future like providing a permanent URL that will redirect to these changing URL but no promises... |
|||||||||||
|
|
You can get a permanent link for an image or anything else stored on Google Drive from this website. All you have to do is to provide a public (shared) link for your file, it means that you have to set Privacy to "Public on web" for every single file you want to never expire. There's a guide on the website, try it out! |
|||
|
|
|
Vetea, if you take the link from picture URL, it does not work, but if you take it from the field "Direct Link" it should work. I have used and tested it in multiple occasions. |
|||
|
|
|
There is a filetype option in the Google Drive API. You could, maybe, check if that resolves to a valid image. I'd look at an option where if the filetype gives me an invalid image, then get a new direct URL for the file. I haven't figured out exactly how to do this though, but maybe that's a path to try. |
|||
|
|
|
If you want to view the file in the browser, it's also possible using a similar method to the one provided by rufo and Torxed:
|
|||
|
|
|
GdriveURL works well to get a permanent link, however this link doesn't seem to be working to embed the image on a webpage... the URL is broken. |
|||
|
|
To get a permalink to my Google Drive files (that can be embedded like in an IMG tag) I've used GDURL.com with success. Hopefully Google will just add Dropbox-like functionality though! |
|||
|
|
Here is a link that I found very helpful. http://www.gdriveurl.com This was a big saving as before I had to Following the direction was a little confusing to start - might be I'm just a old fart? |
||||
|
|
|
Con can disable javascript in your browser open the image file and in the view page source or right click on the image, you will see the image link. ( check share preference before ) |
|||
|
|
|
As per April 2013 and using Chrome/webkit, the following worked for me:
One limitation is that as far as HTTP goes, only secure HTTP access seems to be possible. |
|||
|
|
protected by Community♦ Jan 20 at 13:17
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.