如何使用facebook-android-sdk获取Facebook页面的流

时间:2011-07-07 08:23:20

标签: android facebook stream

我按照这里的步骤操作:https://developers.facebook.com/docs/guides/mobile/#android 但我真的不知道如何使用Graph API来获取Android的页面流(仅限新闻)。

有人能举个例子吗?我也无法在Google上找到一个真正好的在线搜索示例...

1 个答案:

答案 0 :(得分:1)

有一个很好的Graph API资源管理器here,使用带有页面ID的GET请求获取页面信息很简单。

https://graph.facebook.com/<PAGE_ID>    

因此,您可以使用找到的简单样本here

//Page id for Bristol (my hometown) but could use something like 'cocacola'
String PAGE_ID="108700782494847"
mBristolPageButton.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
  //get the request aysn and process JSON response with the Listener
  mAsyncRunner.request(PAGE_ID, new MyPageRequestListener());
}
});

要从页面放置/提取最终的Feed /新闻[但您可能需要auth_token来获取新闻流]

https://graph.facebook.com/<PAGE_ID>/feed