大家好,这个让我疯了2天吧!
当我发送用户确认申请并且他/她确认时,Facebook会将它们重定向到我自己的网址(应用程序网址)并通过这样做打破IFRAME! 我尝试了一切,我也尝试将用户重定向到我自己的脚本,然后手动重定向用户但是也失败了,因为用户通过位于facebook页面的“应用程序选项卡”进入应用程序使用我的应用程序。
网上有太多关于此事的帖子,但我还没找到解决方案...... 如果有人能帮助我,那就太棒了!
此致 莫蒂。
答案 0 :(得分:0)
这种方法对你不起作用。你最好使用javascript来处理登录和身份验证。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID',
session : { VALID_SESSION_DATA }, // don't refetch the session if PHP already has it
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
function login() {
FB.login(
function(response) {
if (response.session) {
if (response.perms) {
// user is logged in, and granted any permissions
} else {
// user is logged in, but did not grant any permissions
}
} else {
// user is not logged in
}
}, {perms:'publish_stream'}
);
}
</script>