我使用以下代码在朋友墙上发布
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 不支持 Graph api 发布到他人墙,我如何发布到朋友墙?