How to identify if a webpage is being loaded inside an iframe or directly into the browser window?

前端 未结 16 2334
攒了一身酷
攒了一身酷 2020-11-22 00:28

I am writing an iframe based facebook app. Now I want to use the same html page to render the normal website as well as the canvas page within facebook. I want to know if I

相关标签:
16条回答
  • 2020-11-22 00:42

    The accepted answer didn't work for me inside the content script of a Firefox 6.0 Extension (Addon-SDK 1.0): Firefox executes the content script in each: the top-level window and in all iframes.

    Inside the content script I get the following results:

     (window !== window.top) : false 
     (window.self !== window.top) : true
    

    The strange thing about this output is that it's always the same regardless whether the code is run inside an iframe or the top-level window.

    On the other hand Google Chrome seems to execute my content script only once within the top-level window, so the above wouldn't work at all.

    What finally worked for me in a content script in both browsers is this:

     console.log(window.frames.length + ':' + parent.frames.length);
    

    Without iframes this prints 0:0, in a top-level window containing one frame it prints 1:1, and in the only iframe of a document it prints 0:1.

    This allows my extension to determine in both browsers if there are any iframes present, and additionally in Firefox if it is run inside one of the iframes.

    0 讨论(0)
  • 2020-11-22 00:49

    Best-for-now Legacy Browser Frame Breaking Script

    The other solutions did not worked for me. This one works on all browsers:

    One way to defend against clickjacking is to include a "frame-breaker" script in each page that should not be framed. The following methodology will prevent a webpage from being framed even in legacy browsers, that do not support the X-Frame-Options-Header.

    In the document HEAD element, add the following:

    <style id="antiClickjack">body{display:none !important;}</style>
    

    First apply an ID to the style element itself:

    <script type="text/javascript">
       if (self === top) {
           var antiClickjack = document.getElementById("antiClickjack");
           antiClickjack.parentNode.removeChild(antiClickjack);
       } else {
           top.location = self.location;
       }
    </script>
    

    This way, everything can be in the document HEAD and you only need one method/taglib in your API.

    Reference: https://www.codemagi.com/blog/post/194

    0 讨论(0)
  • 2020-11-22 00:49

    If you want to know if the user is accessing your app from facebook page tab or canvas check for the Signed Request. If you don't get it, probably the user is not accessing from facebook. To make sure confirm the signed_request fields structure and fields content.

    With the php-sdk you can get the Signed Request like this:

    $signed_request = $facebook->getSignedRequest();
    

    You can read more about Signed Request here:

    https://developers.facebook.com/docs/reference/php/facebook-getSignedRequest/

    and here:

    https://developers.facebook.com/docs/reference/login/signed-request/

    0 讨论(0)
  • 2020-11-22 00:51

    It's an ancient piece of code that I've used a few times:

    if (parent.location.href == self.location.href) {
        window.location.href = 'https://www.facebook.com/pagename?v=app_1357902468';
    }
    
    0 讨论(0)
  • 2020-11-22 00:52

    I'm using this:

    var isIframe = (self.frameElement && (self.frameElement+"").indexOf("HTMLIFrameElement") > -1);
    
    0 讨论(0)
  • 2020-11-22 00:58

    Browsers can block access to window.top due to same origin policy. IE bugs also take place. Here's the working code:

    function inIframe () {
        try {
            return window.self !== window.top;
        } catch (e) {
            return true;
        }
    }
    

    top and self are both window objects (along with parent), so you're seeing if your window is the top window.

    0 讨论(0)
提交回复
热议问题