Amazon S3 temporary URL to image works in IE and Firefox but not Safari - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:17:25Z http://stackoverflow.com/feeds/question/579644 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/579644/amazon-s3-temporary-url-to-image-works-in-ie-and-firefox-but-not-safari 2 Amazon S3 temporary URL to image works in IE and Firefox but not Safari Olly 2009-02-23T22:24:17Z 2009-02-24T12:06:57Z <p>I'm using Amazon S3 to host images. The S3 bucket is private, so I generate a temporary URL (using <a href="http://rightaws.rubyforge.org/" rel="nofollow">Right AWS</a>) with a 5-minute expiry to allow the image to be rendered. The URL looks like this (note: URL below will not work):</p> <pre><code>https://mybucket.s3.amazonaws.com:443/attachments%2F30%2Fsmall.png?Signature=J%2BXzQd95myCNv0Re8arMhuTFSvk%3D&amp;Expires=1235511662&amp;AWSAccessKeyId=1K3MW21E6T8LWBY94C01 </code></pre> <p>This works fine, and I can paste the URL into Firefox and the image is displayed. Same for IE. However, when I try it in Safari the URL appears to resolve but no image is displayed. Similarly, if I try and use the URL in the <strong>src</strong> attribute of an <strong>IMG</strong> tag on a web page, nothing is rendered by Safari (fine in all other browsers), e.g:</p> <p><img src="http://lylo.co.uk/screenshot.png" alt="alt text" /></p> <p>Has anyone seen this behaviour before and can you point out what, if anything, I might be doing wrong?</p> http://stackoverflow.com/questions/579644/amazon-s3-temporary-url-to-image-works-in-ie-and-firefox-but-not-safari/579818#579818 0 Answer by gareth_bowles for Amazon S3 temporary URL to image works in IE and Firefox but not Safari gareth_bowles 2009-02-23T23:16:00Z 2009-02-23T23:16:00Z <p>I haven't seen this myself - do you maybe have your Safari set up not to download images ?</p> http://stackoverflow.com/questions/579644/amazon-s3-temporary-url-to-image-works-in-ie-and-firefox-but-not-safari/580025#580025 1 Answer by Vlad Romascanu for Amazon S3 temporary URL to image works in IE and Firefox but not Safari Vlad Romascanu 2009-02-24T00:39:07Z 2009-02-24T01:23:17Z <p>Your URL is not recognized by AWS:</p> <pre><code>...attachments%2F30%2Fsmall.png... </code></pre> <p>It should actually read:</p> <pre><code>...attachments/30/small.png... </code></pre> <p>Firefox <strong>will</strong> replace all URL-encoded entities (prior to the '?' query marker) with their corresponding ASCII representations before actually submitting the request (i.e. Firefox will replace <code>%2F</code> with <code>/</code> in the example above), whereas Safari might not. AWS will likely reply with HTTP 404 to Safari in such circumstances.</p> <p>Make sure that your URL is well formed for AWS. Study carefully any differences between the URL that Firefox has in its address bar after the image is <em>successfully</em> retrieved, vs. the URL that Safari has in its address bar after the image <em>fails</em> to be retrieved.</p> <p>Cheers, V.</p> http://stackoverflow.com/questions/579644/amazon-s3-temporary-url-to-image-works-in-ie-and-firefox-but-not-safari/581525#581525 3 Answer by Olly for Amazon S3 temporary URL to image works in IE and Firefox but not Safari Olly 2009-02-24T12:06:57Z 2009-02-24T12:06:57Z <p>With a bit of digging around in the S3 library I'm using I have found the problem here.</p> <p>When you upload a file to S3 you have to set the <code>Content-Type</code> header. In my situation I was uploading two files, one was an original PDF file with a Content-Type of <code>application/pdf</code>, the other was a thumbnail preview in PNG format. The library I was using to upload to S3 does set the <code>Content-Type</code> header, but it was setting the header to <code>application/pdf</code> for both the original PDF and the PNG thumbnail.</p> <p>It seems that Firefox and IE will happily render a PNG image from S3 even though it has the wrong <code>Content-Type</code> header, whereas Safari doesn't like this at all and consequently won't render the image.</p> <p>So, patching the S3 library I'm using such that the correct <code>Content-Type</code> header is correctly set on the PNG thumbnails solved the issue. </p> <p>Phew.</p>