0

我使用以下代码在朋友墙上发布

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 发布到他人墙,我如何发布到朋友墙?

4

1 回答 1

0

如果 Facebook 不支持 Graph api 发布到他人墙,我如何发布到朋友墙?

没办法,由于滥用该功能而被禁用。如果 Facebook 说不,那么解决方法就是不合逻辑的。

于 2013-06-19T18:49:56.247 回答