Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if its possible to access/display files like images which are stored in Google Drive on a public website.

share|improve this question
It seems that the user that created the question never used SO anymore, leaving this question without accepted answer (when there is at least one valid answer). Can the community editors fix that? – rufo Mar 27 at 14:42

12 Answers

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).

share|improve this answer
drive.google.com * otherwise perfect! Thank you! +1 – Torxed Dec 5 '12 at 22:54
Thanks. At the time of writing the url was correct (docs.google.com). I guess they changed it (or drive.google.com was also valid and I didn't noticed). – rufo Jan 11 at 20:08
4  
You can also just VIEW it (rather than download) by using this: drive.google.com/uc?export=view&id={fileId} – Jeff Johnson Jan 14 at 18:15
However, apparently this URL (at least the "view" one) only works when the user viewing it is logged in to Google (Drive?). In an anonymous browsing window, I received a login page instead of the (publicly shared) image I requested. – Scytale Feb 21 at 13:34
@Scytale: I have seen issues like that if your browser "remembers" your google login, but not your password. If you are 100% anonymous it works (I use it to download images in an App, and it works). – rufo Mar 27 at 14:39

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:

http://googledrive.com/host/<folderID>/<filename>
share|improve this answer
does it work for folders setup with permissions "anybody with a link"? – rufo Dec 6 '12 at 12:01
Check it yourself, but I suppose no. – niutech Dec 6 '12 at 14:51
1  
This is the correct answer and more information can be found here: googleappsdeveloper.blogspot.ca/2012/11/… – Art Dec 26 '12 at 19:31
This works beautifully!! Just had to say thank you for sharing! – Todd H. Feb 21 at 20:38
I checked: it doesn't work with "anybody with a link". So this method is okay for people that doesn't mind users on the web to be able to find their content (not my particular case). – rufo Apr 17 at 14:48
show 1 more comment

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...

share|improve this answer
1  
It would be nice knowing in advance how long a link lives. Is it fix or it depends on other parameters? – Drake Apr 26 '12 at 9:47
2  
By experience if I ask the engineer what that value is he will reply: "It is currently XXX but don't tell them because we might change it anytime :)" I'm sure you can experiment easily to find this value though ;) – Nivco Apr 26 '12 at 9:50
Currently a public, even if expiring, link to a resource it's what we need, beside application sandboxes, for which data already belongs to a oauth2 app without messing with ACLs. – kain May 1 '12 at 1:58

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!

share|improve this answer
A very good solution if you don't use the API – Seppl Oct 28 '12 at 23:27

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.

share|improve this answer

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.

share|improve this answer

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:

https://drive.google.com/uc?export=view&id={fileId}
share|improve this answer

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.

share|improve this answer
are you saying that GDrive disables using images directly in a webpage, or that it is broken but should work? – thecoshman Oct 11 '12 at 10:09

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!

share|improve this answer
This should be a comment to the OP question as it does not atempt to answer it – Yaroslav Oct 6 '12 at 13:59

Here is a link that I found very helpful. http://www.gdriveurl.com

This was a big saving as before I had to ftp an image to my website then post it to the forum or blog I might be working on.

Following the direction was a little confusing to start - might be I'm just a old fart?

share|improve this answer

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 )

share|improve this answer

As per April 2013 and using Chrome/webkit, the following worked for me:

  • Make a folder called e.g. "public"
  • Select that folder, right click and Share > Share. Click. Select "Anyone can access"
  • Drag and Drop a file into the folder, and let it upload.
  • Right click on the file and select Details. One of the lines in the Details-Fieldset reads "Hosting". Underneath it is an url:

https://googledrive.com/...

  • Drag and Drop that url into a new tab. Copy and paste the url and share or embed it anywhere you like.

One limitation is that as far as HTTP goes, only secure HTTP access seems to be possible.

share|improve this answer

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.