この問題には多くの答えがありますが、正しい解決策が見つかりません! ログインを呼び出す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' ));
しかし、このURLをjavascriptボタンに追加して、ユーザーの壁に投稿する許可を求めるにはどうすればよいですか