次のコードを使用して、友達の壁に投稿しました
Bundle parameters = new Bundle();
JSONObject attachment = new JSONObject();
attachment.put("message", "Messages");
attachment.put("name", "Get thisapp to send messages like this!");
attachment.put("href", link);
parameters.putString("attachment", attachment.toString());
parameters.putString("message", msg);
parameters.putString("target_id", “friend id”);
parameters.putString("method", "stream.publish");
String response = authenticatedFacebook.request(parameters);
Log.v("response***********", response);
しかし、応答で次のエラーが表示されます
02-25 16:12:24.365: V/response***********(6540): {"error_code":200,"error_msg":"Feed story publishing to other users is disabled for this application"
このリンクhttps://developers.facebook.com/roadmap/#february-2013を参照しました。Facebook が他の人の壁に投稿するためのグラフ API をサポートしていない場合、どうすれば友達の壁に投稿できますか?