この質問は初期の質問の繰り返しですが、関連する回答は見つかりませんでした。Facebookの投稿 - 友だちの壁に投稿する
私はFBアプリを構築していると私はこのコードを使用して友人の壁に公開しようとしています:
今$attachment = array(
'access_token' => $facebook->getAccessToken(),
'message' => 'Did a Test Post :',
'name' => "This is the title of my post",
'link' => "http://blogs.canalplan.org.uk/steve/2010/04/28/hitting-a-moving-target/",
'description' => "this is the body of the post with lots of wiffly woffly text in it, lets see if this all works ok!",
'picture'=>"http://blogs.canalplan.org.uk/steve/files/2009/12/13742_1291940983817_1389037839_836473_2130235_n.jpg",
);
100001893238650- this is a friend that give permission to publish on hes wall
$facebook->api('/100001893238650/feed', 'POST', $attachment);
、私が代わりにこのIDを「私」を使用していたときに、それが正常に動作しますが、いつでもidは '私'ではないUncaughtを取得するOAuthException:(#210)ユーザーが表示されないエラー。
curlを使用しても同じエラーが発生します。
私はpublish_streamを求めていて、offline_access(私はoffline_accessが接続されているとは思えませんが、確かに確かなものです)の許可を得ています。
私は間違っていますか?どの許可が必要なのですか?
http://stackoverflow.com/questions/2314467/how-to-publish-facebook-feed-as-someone-else-other-than-the-logged-in -user – rICh