-1

在我的应用程序中,我想检索特定 Facebook 帖子的内容(消息)。我能够获取该特定帖子的 postid id,但我无法获取与该 id 关联的内容。我找不到任何FQL查询来获取带有 post_id 或Graph API URL的帖子消息。

我有这个 URL 来获取所有帖子,../100005002784039/posts?fields=id,name,message但是在传递帖子 ID 时我只想要帖子的特定消息。

我怎样才能做到这一点?

4

2 回答 2

1

感谢 sahil,我的网址是这样的:

https://graph.facebook.com/"+PostId()+"?access_token=Token);

代码

URL fbmsg = new URL("https://graph.facebook.com/"+trace.getFbPostId()+"?access_token="+TOKEN+"");
URLConnection yc = fbmsg.openConnection();

BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));

String inputLine;

String s = "";

while ( (inputLine = in.readLine()) != null)
    System.out.println(inputLine);

Log.d(TAG, "getPostId trace getFbPostId " + inputLine);
s = s + inputLine + "n";
Log.d(TAG, "getPostId trace getFbPostId " + s);
in.close();
System.out.println(s);
于 2013-01-28T07:34:05.913 回答
0

只需对 API 进行以下查询 -

/POST_ID
于 2013-01-28T06:51:56.143 回答