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 need to open an URL, from an anchor situated on a page created for Facebook at the top-most level. Doing some research, I found that the new X-Frame-Options restrictions are blocking this action and that a possible fix for this is to allow access at the requester level, ie. my application.

The application is being hosted through IIS 6 so I could easily add the required custom header X-Frame-Options ALLOW-FROM http://www.mywebsite.com/, however, I still get the refusal message when trying to click on a link in my page.

I cannot upgrade to a newer version of IIS as marketing material already went out. Is there another way to fix this, or am I adding the X-Frame-Options at the wrong location?

Also, I have target="_top" in both my anchors.

share|improve this question

1 Answer

up vote 1 down vote accepted

I need to open an URL, from an anchor situated on a page created for Facebook at the top-most level. Doing some research, I found that the new X-Frame-Options restrictions are blocking this action

No, it's the other way around - what the X-Frame-Options header does, is restrict a document from being displayed in any kind of frame environment.

and that a possible fix for this is to allow access at the requester level, ie. my application.

No. The responder, that is, the web server delivering the resource, has to set that header to control where the document can be displayed or not.

share|improve this answer
so, the responser (jadederic.com) has to set the header, which I'm doing? – JadedEric Feb 15 at 12:06
Then what's the actual problem? I still don't know what opening a page on top level has to do with this. – CBroe Feb 15 at 12:09
I have an application, located at somedomain.com/social which I iframe into Facebook, through FB Tabs. 3 pages in total, you get to the last page, and you have a button. You click this button to share something on twitter, that's the top level, because Twitter OAuth does not allow iframes, as we know. now facebook is blocking this because of XFO – JadedEric Feb 15 at 12:15
I still can't see why anything in that scenario should be blocked because of an X-FRAME-OPTIONS header. – CBroe Feb 15 at 12:29
That's what Chrome is telling me. If I remove the X-Frame-Options header from IIS that serves my pages, Facebook just blocks it out, but target="_top" is not working still, even with ALLOW-FROM somedomain.com enabled on the page.. – JadedEric Feb 15 at 12:37
show 6 more comments

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.