这个问题有很多答案,但我找不到合适的解决方案! 我有调用登录的javascript,但没有预先发布到墙上
window.fbAsyncInit = function() {
FB.init({
appId: '<?php echo $this->getAppID; ?>',
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
FB.Event.subscribe('auth.logout', function(response) {
window.location.reload();
});
};
(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);
}());
在PHP代码中,它非常简单地添加到数组中:
$facebook->getLoginUrl(array(
'scope' => 'publish_stream' ));
但如何将其添加到此网址的javascript按钮,以请求权限发布到用户的墙上
答案 0 :(得分:1)
您使用scope参数请求权限:
FB.login(function(response) {
alert(response);
}, {scope: 'email,user_likes'});
修改强>
使用Javascript:
function login() {
FB.login(function(response) {
alert(response);
}, {scope: 'email,user_likes'});
}
HTML:
<div onclick="login();return false;">click here to login</div>