I am using 'google viewer' to view some documents. Only problem is, if the browser has a google-login that is in "limbo" it shows nothing and the "Refused to display document because display forbidden by X-Frame-Options." error occurs and is shown in the console.

What I mean by "limbo" is when a login is known but the user has to re-enter their password to reverify themselves.

Is there a method to detect when this error occurs so I can display a popup error to notify the user?

Thanks in advance.

link|improve this question
feedback

1 Answer

Had a same problem and the only solution found was to check if iframe finished loading after some time:

var errloading;
    $(document).ready(function () {
        $('#DtLoadingIframe').one('load', (function () {
            clearTimeout(errloading);
        }));
        errloading = setTimeout("RedirectApp()", 5000);
    });
    function RedirectApp() {
        window.location = "App.aspx";
    }
    function LoadingInfoHide() { $("#LoadingInfo").hide(); }

So actually, users that approved my app, are now "automatically" signed in within iframe. Others are redirected after 5 seconds (for those 5 seconds I have some small text explaining the situation).

Perhaps it could be done better by using this approach?

http://static.jtwb.dotcloud.com/test-cases/html/content-disposition-attachment.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.