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.

In our app (https://apps.facebook.com/testedenivel), we explicitly reference the page css in a https link like this:

<link rel="stylesheet" href="https://d2asm4nez8zghw.cloudfront.net/content/app-teste-de-nivel.css?v=0.96.02" type="text/css" media="screen">

But strangely, Facebook is preloading this this css file as a HTTP link. At some point before, we used this HTTP url but later we changed it to HTTPS, and now it seems that Facebook is using a former, cached version of that url:

<script type="text/javascript">
new Image().src = "http:\/\/www.talkfast.com.br\/content\/app-teste-de-nivel.css";
</script>

The problem is that when the user enters our app via secure browsing, the HTTP link preloading is causing the browser to alert our users that some insecure content is about to be loaded. We'd like to know how to tell Facebook to remove this preloading script, or at least to use our current HTTPS url, like this:

<script type="text/javascript">
new Image().src = "https://d2asm4nez8zghw.cloudfront.net/content/app-teste-de-nivel.css?v=0.96.02";
</script>

There seems to be scarcity of reference regarding this issue on the web, so any help would be appreciated.

share|improve this question

1 Answer

I'm not test this solution in facebook app but on wild web you can use this

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>

as proof :) http://paulirish.com/2010/the-protocol-relative-url/

With this all resources loaded with page protocol, so user don't see confirmation about unsecured elements on page.


Just create test app with Heroku and my chromium not angry about https resouces inside frame so problems depends on browser.

share|improve this answer

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.