表示相册。
GET /{album-id}
具体要求取决于相册所在节点的类型。
要求 | 用户节点 | 公共主页节点 | 小组节点 |
---|---|---|---|
均可 | 均可 | ||
无 | 如果您无法在特定公共主页中执行任务,要获取该公共主页的公开公共主页内容,您将需要 | 无 | |
未发布的公共主页:
已发布的公共主页: | 无 | ||
不适用 | 不适用 | 管理员 |
GET /v21.0/{album-id} HTTP/1.1
Host: graph.facebook.com
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/{album-id}',
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result */
/* make the API call */
FB.api(
"/{album-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{album-id}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{album-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
名称 | 描述 | 类型 |
---|---|---|
| 相册编号。 |
|
| 浏览者是否可以向此相册上传照片。 |
|
| 相册中照片的大致数量。此数量不一定是精确的计数 |
|
| 相册封面照片的编号。 | |
| 相册的初始创建时间。 |
|
| 有关相册的描述。 |
|
| 与此相册关联的活动。 | |
| 如果相册由当前用户创建,则为当前用户。 | |
| Facebook 上这个相册的链接。 |
|
| 相册的文本位置。 |
|
| 相册的标题。 |
|
| 与此相册关联的地点。 | |
| 相册的隐私设置。 |
|
| 相册的类型。 |
|
| 上一次更新相册的时间。 |
|
您无法在此端点上执行此操作。
您无法在此端点上执行此操作。
您无法在此端点上执行此操作。