我的问题是如何打开特定专辑?
我打开了页面,但不知道进一步的步骤
有人问过this。
final Intent appIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/144344458913180"));
startActivity(appIntent);
答案 0 :(得分:0)
根据facebook Graph API文档,您应该按如下方式提出请求:
/* make the API call */
new Request(
session,
"/{album-id}",
null,
HttpMethod.GET,
new Request.Callback() {
public void onCompleted(Response response) {
/* handle the result */
}
}
).executeAsync();
我没有亲自检查,但如果您想查看相册上的文档以及如何使用它们:https://developers.facebook.com/docs/graph-api/reference/v2.2/album