您好我在angularjs中实施了一个网站。
我从Facebook上取了一个新的id,但问题是当我尝试通过我网站上的facebook连接时,我得到了来自facebook的null响应。
代码如下: -
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : '1412261982372017',
channelUrl : '//ABC.com/channel.html', // Channel File for x-domain communication
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});
};
(function(d, debug){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
现在上面的代码在我使用旧ID时工作得很好。但是自从我改变了id(现在三次)以来我无法连接到facebook。
请帮助我。