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.

The page is question is https://apps.facebook.com/gentlemensbet/ The 'Begin Betting' button won't load the oauth screen for anyone.

However, if you open it in a new window, it seems to work just fine. I can't find any reasonable explanation for this behavior and don't know how to correct this.

share|improve this question

1 Answer

up vote 3 down vote accepted

Add target="_blank" or target="_top" to your anchor tag. You are trying to load a facebook URL in an iframe within a facebook page. That isnt permitted.

Refused to display document because display forbidden by X-Frame-Options.

is the error logged in the console. It is a preventive measure against click-jacking.

Your link should be:

<a class="btn btn-large btn-primary" href="https://www.facebook.com/dialog/oauth?..." target="_blank"></a>
share|improve this answer
Thank you! This solved fixed the issue right away. – user1525624 Jul 14 '12 at 14:15

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.