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 want to open facebook page inside iframe but its not supporting that .Right now i am opening it inside a window but want to open it inside a frame.so is there any othere way to do that.

Thanks,

share|improve this question
Have you read the Facebook docs on how to use FB as your login system? It gives good instructions on how to load the JavaScript SDK to log users into your site with Facebook: developers.facebook.com/docs/guides/web/#login – megsa Jul 20 '12 at 6:14

2 Answers

Are you talking about a facebook page within your own website?

If so;

  <iframe src="http://www.facebook.com"></iframe>

If not could you provide more information.

Update See below comment. It seems Facebook blocks it's pages from being includes in iframes.

share|improve this answer
2  
That won't work as Facebook doesn't allow itself to be loaded in iframes. See: stackoverflow.com/questions/9680215/… – megsa Jul 20 '12 at 5:14
1  
@megsa - I learn something new everyday. Thanks – AshHimself Jul 20 '12 at 5:54
i just want to load facebook login page to do only login not access to the whole facebook site.Can i perform this only.. – pbhle Jul 20 '12 at 6:05
No @pallavi, I suggest redirecting them to the site or opening in a popup like you have already done. – AshHimself Jul 20 '12 at 6:09
ok.. thanks .... – pbhle Jul 20 '12 at 6:29

Facebook, as most serious sites explicitly disallow this in order to prevent clickjacking.

One of the ways Facebook do this is by sending the 'X-frame-options:deny' header, which instructs your browser to not display the page inside an iframe.

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.