4

我正在将 Facebook 集成到我的应用程序中,我可以轻松完成,但是当我尝试在墙上发布带有超链接的消息时遇到问题,当我尝试这样做时,我收到 Missing message or attachment OauthException code 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");`

谁能告诉我哪里出错了?谢谢你。

4

1 回答 1

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");
于 2012-08-10T12:10:31.307 回答