希望有人可以帮助我。我有一个facebook画布应用程序。我正在使用此代码进行身份验证
window.fbAsyncInit = function() {
FB.init({ appId: '123842974364777',
status: true,
cookie: true,
xfbml: true,
oauth: true});
this.vars = {
access_token: '',
album_id: '',
items: '',
user_id: '',
photo_path: '',
errorHandler: 'There was a problem posting your picture!<br> Please contact <a href="mailto:support@eshots.com">support@eshots.com</a>',
counter: 1
}
authenticate();
function authenticate() {
FB.getLoginStatus(function(response) {
if(response.authResponse) {
// logged and known to app
// store access token
vars.access_token = response.authResponse.accessToken;
sendUserInformation();
} else {
// not logged in or unknow to app
// prompt user to authorize app
FB.login(function(response) {
if(response.authResponse) {
// store access token
vars.access_token = response.authResponse.accessToken
sendUserInformation();
}
}, {scope: 'email,read_stream,user_birthday,user_photos,publish_stream'});
}
});
}
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol
+ '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
我的问题是,运行此代码不会在facebook iframe中显示我的页面。它只是停留在网络域名上。我需要的是将这个页面显示在facebook iframe中。
为了实现这一目标,我需要添加什么?
感谢任何帮助!
答案 0 :(得分:0)
您是否在开发者应用中设置了画布网址/安全网址以指向您的画布代码?
这应该基本上指向您的域http://mydomain.com/mycanvasfolder,其中canvas文件夹将包含您要显示的索引页。
您应该能够看到没有任何其他配置或FB内容的基本页面。