尝试客户端站点授权,并尝试在画布中运行。如果我直接访问我的网站http://mysite.com/一切正常。如果我尝试通过canvas https://apps.facebook.com/myapp运行它会运行,但getLoginStatus根本不会触发。
var curLoc = window.location;
FB.init({
appId: 'xxxxxxxxxxxxxxx', // App ID
channelUrl: curLoc.protocol + "//" + curLoc.hostname + ":" + curLoc.port + "/channel.html",
cookie: true, // enable cookies to allow the server to access the session
status: true,
oauth: true,
xfbml: true
});
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
smloader.gameVariables.smUserid = response.authResponse.userID;
facebook.isLoaded = true;
} else {
facebook.authUser();
}
}, true);
如果需要,请登录。
function facebook.authUser() {
FB.login(function (response) {
if (response.authResponse) {
smloader.gameVariables.smUserid = response.authResponse.userID;
facebook.isLoaded = true;
}
else {
facebook.authUser();
}
}, { scope: 'email,publish_actions' });
}
一旦Facebook.isLoaded成立,我知道我们已登录并准备继续。但它永远不会直接从画布页面到达那里。
我处于沙箱模式,目前通过http而不是https运行,因为我没有
任何想法?
答案 0 :(得分:1)
我一直面对同样的pb,这就是我修复它的方式:
即使getLoginStatus()在您的http网站中运行,getLoginStatus()也不会在fb画布中触发,除非您提供有效的安全画布URL (https://yoursite.com/) ! 这意味着您需要在https服务器(端口443)上运行您的应用程序 如果您不想购买证书,可以创建并自行签署证书(参见此处:http://greengeckodesign.com/blog/2013/06/15/creating-an-ssl-certificate-for-node-dot-js/)
我希望这会有所帮助