Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've switched my Facebook page to pull an iframe as a result of Facebook's recent announcement that they were supporting iframes in pages. Since you need to host the iframe page outside of Facebook, I figured it would be nice to do using Cloudfront to host the files (an HTML page, a CSS stylesheet and a jpg image). Unfortunately, despite setting the permissions on the Cloudfront files to 744, the iframe page loads correctly in a browser, but when called from Facebook, I get this error message.

When I host the same files on my Media Temple server, the iframe on the actual Facebook page also loads correctly.

Is there a reason why Facebook and Cloudfront don't play together? I haven't been able to find one so far.

share|improve this question
OK, it can be done: but you need to host the images on Cloudfront and the rest of the content on S3. Amazon provides a set of clear instructions on how to this. Issue solved. – Donald Jenkins Feb 25 '11 at 12:02

2 Answers

Unfortunately Facebook loads the iframe page using an HTTP POST, not an HTTP GET and is not compatible since Amazon has a REST interface and properly uses POST to upload/modify content.

Best,

David Bullock

share|improve this answer
up vote -1 down vote accepted

OK, it can be done: but you need to host the images on Cloudfront and the rest of the content on S3. Amazon provides a set of clear instructions on how to this. Issue solved.

share|improve this answer
No it should work to host everything through cloudfront too. What is the url of the page you want to put in the iframe? – Martin Feb 25 '11 at 12:48
And actually, there still seems to be an issue using even S3 to serve content to a Facebook iframe: if the index html page is hosted on S3, I get this error message: http://cl.ly/4q5h.The javascript files and images can be hosted on Cloudfront (they are now on that page) but the html can't be hosted from either, and for some reason the css can't either. I suspect the html issue is due to Facebook, but the css one is weird. – Donald Jenkins Feb 25 '11 at 14:46
The content hosted on S3 (identical to the one on Media Temple) that's generating that error message when viewed via the Facebook iframe loads without issues if you view it directly: http://donaldjenkins-facebook.s3-website-us-east-1.amazonaws.com/ – Donald Jenkins Feb 25 '11 at 15:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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