IE FB.login callback not running and XD proxy window left open

后端 未结 2 2232
南旧
南旧 2021-01-27 03:56

I am having problems getting Facebook login to work correctly in IE. The problem is intermittent. Usually, when it makes the call to FB.login, the popup appears but stays on an

2条回答
  •  抹茶落季
    2021-01-27 04:11

    Try this right after FB.init:

    if($.browser.msie || $.browser.opera) { // yes, this is jQuery :)
      FB.XD._transport = 'fragment';
      FB.XD.Fragment._channelUrl = yourChannelUrl;
    }
    

提交回复
热议问题