私はfacebook PHP SDK 3.1.1を使用しています。iFrameアプリは、すでにページのファンであるログオンユーザーの壁に投稿できます。
以下はcoeであり、「致命的なエラー:キャッチされていないOAuthException:(#200)ユーザーは、スローされたこのアクションを実行するアプリケーションを承認していません」というエラーが表示されます
/*post starts*/
$attachment = array('message' => 'test message',
'name' => 'test app!',
'caption' => "Caption of the Post",
'link' => 'http://apps.facebook.com/phpsdk_demoapp/',
'description' => 'It is fun!',
'picture' => 'http://www.takwing.idv.hk/facebook/demoapp_phpsdk/img/logo.gif',
'actions' => array(array('name' => 'Start Learning',
'link' => 'http://www.takwing.idv.hk/tech/fb_dev/index.php'))
);
$result = $facebook->api('/me/feed/',
'post',
$attachment);
/*post ends*/
ユーザーから許可を得てウォールに投稿する部分を追加する必要があると思います。親切に助けてください。ありがとう