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.

As title, how can I check if I'm landed on facebook Canvas page or fanpage tab?

share|improve this question

2 Answers

up vote 0 down vote accepted

Check the signed_request for whether it contains a page property or not.

share|improve this answer
does it mean if we land on apps.facebook.com we wouldn't find page in the signed_request array(after decrypt) – user1613290 Dec 20 '12 at 16:47
Of course not, because you are not on a page. – CBroe Dec 21 '12 at 6:49
if(strpos($_SERVER['HTTP_REFERER'], 'apps.facebook')) {
  echo 'canvas page';
} 
share|improve this answer
This is a bad idea - the client does not have to send a genuine referrer, nor does it have to send one at all. – CBroe Dec 20 '12 at 10:56

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.