我想通过应用程序在Facebook好友的墙上发布消息。我正在获取Facebook好友列表和一些信息,如身份证,生日,姓名,电子邮件,图片,性别。
我在这里粘贴一些使用的代码
Bundle parameters = new Bundle();
JSONObject attachment = new JSONObject();
try {
attachment.put("message", "Many more returns of the day");
} catch (JSONException e) {
}
parameters.putString("attachment", attachment.toString());
parameters.putString("target_id", iddd); // target Id in which you need to Post
parameters.putString("method", "stream.publish");
String response = authenticatedFacebook.request(parameters);
Log.v("response", response);
运行后,我收到了这个错误:
" V / response(1420):{" error_code":101," error_msg":"无效的应用程序 。ID"" request_args":[{"键":"方法""值":"流.publish"},{"键":"格式""值":" JSON"},{"密钥":" target_id""值":" 100000739061115"},{"键":"附件&#34 ;,"值":" {\"消息\":\"许多 当天的更多回报\"}"}]}"
我的问题是:
提前致谢 请帮忙