当通过chrome开发人员工具限制速度时,FB.init()无法正常工作

时间:2017-10-07 22:37:58

标签: angularjs facebook asynchronous sdk bandwidth-throttling

我在我的网站上使用Facebook登录功能。但不知何故,当我使用Chrome Developer工具来降低速度时,FB.init似乎无法正常工作。

我的活动" fbReady"没有广播。我把一个调试器放在FB.getLoginStatus行上。但剧本永远不会停止,因为它没有初始化。

当没有速度限制时,它可以正常工作

这是我的初始化代码。

var app = angular.module("myApp", ["ngRoute"]);
app.run(function($window, $rootScope, $location) {
    $window.fbAsyncInit = function() {
        FB.init({
            appId: 'xxxxxx95',
            status: true,
            cookie: true,
            xfbml: true,
            version: 'v2.10'
        });

        FB.getLoginStatus(function(response){
            if (response.status == "connected") {
                $rootScope.userId = response["authResponse"]["userID"];
                $rootScope.fbReady = true;
                $rootScope.$broadcast('fbready');
                $rootScope.$apply();
                FB.api('/' + $rootScope.userId + '?fields=picture.type(square)', function(response) {
                    $rootScope.userPic = response["picture"]["data"]["url"];
                })
            }else{
                $rootScope.fbReady = true;
                $rootScope.$broadcast('fbready');
            }
        })
});

1 个答案:

答案 0 :(得分:2)

我记得有类似的问题。这可能与你如何在你的javascript SPA应用程序中包含facebook sdk有关。

这是我的工作功能,包括facebook(我在ReactJS项目中使用它)

function initFacebook() {
        window.fbAsyncInit = function() {
            let FB = window.FB;
            FB.init({
                appId: process.env.FACEBOOK_APP_ID,
                cookie: true,
                xfbml: true,
                version: 'v2.10'
            });
            FB.getLoginStatus(function (response) {

            })
        }

        (function (d, s, id) {
            var js, fjs = d.getElementsByTagName(s)[0];
            if (d.getElementById(id)) return;
            js = d.createElement(s);
            js.id = id;
            js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.10";
            fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));
    }

您可以尝试在app.run方法

中运行此功能