user3461957
user3461957

Reputation: 163

Facebook not appearing in iframe

As it can be seen here facebook does not appear in iframe. My question is facebook blocking it some way, if so how can I do this. I obviously don't want complete solution but little help would be great.

Upvotes: 0

Views: 56

Answers (3)

Bart S.
Bart S.

Reputation: 129

Facebook forbids being loaded into an iframe. If you check your debug console you will see the following:

Refused to display 'https://www.facebook.com/' in a frame because it set 'X-Frame-Options' to 'DENY'.

Upvotes: 1

Sam Creamer
Sam Creamer

Reputation: 5361

see this:

https://developer.mozilla.org/en-US/docs/Web/HTTP/X-Frame-Options

Facebook denies people from viewing it in an iframe.

Refused to display 'https://www.facebook.com/' in a frame because it set 'X-Frame-Options' to 'DENY'.

Upvotes: 1

Amit Joki
Amit Joki

Reputation: 59232

Refused to display 'https://www.facebook.com/' in a frame because it set 'X-Frame-Options' to 'DENY'.

Basically search for X-Frame and CORS

Upvotes: 1

Related Questions