在Facebook中发送邮件时丢失邮件或附件错误

时间:2012-08-10 09:52:30

标签: android facebook facebook-graph-api

我正在将Facebook集成到我的应用程序中,我可以轻松完成,但是当我尝试在墙上发布带有超链接的消息时我遇到了问题,当我尝试这样做时,我收到了Missing消息或者附件OauthException代码100,我能够发布没有超链接的消息。这是我用于在墙上发布的代码:

JSONObject attachment = new JSONObject();

attachment.put("message", "Messages");
attachment.put("name", "click");
attachment.put("href", "http://www.facebook.com");
Bundle parameters = new Bundle();
parameters.putString("attachment",attachment.toString());
response = mFacebook.request("me/feed", parameters,"POST");`

任何人都可以告诉我哪里出错了吗? 谢谢。

1 个答案:

答案 0 :(得分:0)

尝试做类似的事情:

Bundle parameters = new Bundle();
parameters.putString("message", "Messages");
parameters.putString("name", "click");
parameters.putString("link", "http://www.facebook.com");
response = mFacebook.request("me/feed", parameters, "POST");