如何在Android应用程序的Facebook应用程序中打开具有适当ID的公共页面的专辑?

时间:2015-03-13 11:21:04

标签: android facebook facebook-graph-api

我的问题是如何打开特定专辑?
我打开了页面,但不知道进一步的步骤 有人问过this

final Intent appIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/144344458913180"));
startActivity(appIntent);

1 个答案:

答案 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