代表相簿。
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 相簿的連結。 |
|
| 相簿的文字位置。 |
|
| 相簿的標題。 |
|
| 與此相簿關聯的地標。 | |
| 相簿的隱私設定。 |
|
| 相簿的類型。 |
|
| 相簿上次更新的時間。 |
|
您無法在這個端點執行此操作。
您無法在這個端點執行此操作。
您無法在這個端點執行此操作。