2

我正在尝试使用facebook graph api从页面配置文件中获取 facebook 事件。我使用的方法如下

HttpClient client = new DefaultHttpClient();
HttpGet get = new HttpGet("https://graph.facebook.com/oauth/access_token?client_id="+APP_ID+"&client_secret="+APP_SECRET+"&grant_type=client_credentials");
ResponseHandler<String> responseHandler = new BasicResponseHandler();
String access_token = client.execute(get, responseHandler);
String uri = "https://graph.facebook.com/PageName/events?"+access_token.replace("|","%7C");
get = new HttpGet(uri);
String responseBody = client.execute(get, responseHandler);

其中 APP_ID、APP_SECRET 和 PageName 我将替换为我的详细信息。它的工作没有问题,我也从 Facebook 获得响应作为 json 数组,其中包括事件的名称、开始时间、结束时间、时区、位置、id,但没有事件描述

如何解决这个问题?

4

2 回答 2

5

默认情况下,您不会获得事件描述,但您可以在使用时添加相同的fields内容以及您需要的其他信息并检索更详细的列表。所以你需要将你的uri更改为

String uri = "https://graph.facebook.com/PageName/events?fields=name,start_time,timezone,location,description"+access_token.replace("|","%7C");

检索所需的信息。

于 2013-05-31T06:44:45.307 回答
3

使用Event ID您在响应中获得的,并使用它从以下位置获取该事件的每个细节:

"https://graph.facebook.com/EVENT_ID"
于 2013-05-31T06:15:39.243 回答