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 redirect all traffic going to my Facebook app tab on my server directly to my Facebook app. Therefore I check with the following code if the user is inside the Facebook iframe or on my webpage:

<!-- language: lang-js -->
function referrerIsFacebookApp() {
    if(document.referrer) {
        return document.referrer.indexOf("facebook.com") !== -1;
    }
    return false;
}

if (!referrerIsFacebookApp()) {
    top.location.replace("https://www.facebook.com/bommelME/app_264697733636385");
};

If I open up the page with the browser everything works as it should. But if I link to this page and open the link the redirect doesnt work. Any hints?

share|improve this question
it depends on what is inside your referrerIsFacebookApp function – haynar Jul 20 '12 at 14:31
sry, i just edited the code. pasted the wrong one ;) – fourgood Jul 20 '12 at 14:34

3 Answers

up vote 2 down vote accepted

Use window.top to detect whether your app is in an iFrame or not. Try this.

if (window!=window.top) { 
   /* I'm in a frame! */ 
   window.location = "https://www.facebook.com/bommelME/app_264697733636385";
}

Cheers.

share|improve this answer
that did the trick ;) – fourgood Jul 20 '12 at 14:50

I think you should check the window.parent object instead of document.referrer, because the page can be referenced from another one as you've said but not being included via iframe

share|improve this answer

This is the code we use

<script type="text/javascript">
var referrer = (document.referrer.indexOf('static.ak.facebook.com') >= 0) ;
if(!referrer){
    document.location.href='{{facebook_page_tab}}';
}
</script>
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.