【发布时间】:2015-10-28 22:42:36
【问题描述】:
据我了解,Facebook SDK v4 不再使用会话,但我在他们的 Graph API 文档中阅读,会话仍然用于创建请求
https://developers.facebook.com/docs/graph-api/using-graph-api/v2.3
/* make the API call */
new Request(
session,
"/me",
null,
HttpMethod.GET,
new Request.Callback() {
public void onCompleted(Response response) {
/* handle the result */
}
}
).executeAsync();
这让我很困惑,我怎样才能获得 Request 的会话?使用 Facebook Graph API 获取用户个人资料数据的任何最新示例?
感谢任何建议。
【问题讨论】:
标签: android facebook facebook-graph-api