myapp から facebook へのログインに成功し、accesstoken を取得しましたが、ウォールにメッセージを投稿すると、次の例外が発生しました。
{"error":{"message":"(#10) Application does not have permission for this action","type":"OAuthException","code":10}}
コードは次のとおりです。
Bundle parameters = new Bundle();
parameters.putString("message", "hello ...");
parameters.putString(Facebook.TOKEN, mFacebook.getAccessToken());
try {
String response = mFacebook.request("me/feed", parameters,"POST");
} catch (IOException e)
{}