Graph API 版本

相簿

代表相簿

讀取

GET /{album-id}

取得相簿的欄位關係連線

必備條件

必備條件依相簿所在的節點類型而定。

必備條件用戶節點粉絲專頁節點社團節點

存取權杖

均可

均可

用戶

功能

若要取得無法在粉絲專頁上執行工作的該公開粉絲專頁內容,需要 Page Public Content Access

權限

user_photos

未發佈的粉絲專頁:

已發佈的粉絲專頁:

社團角色

不適用

不適用

管理員

要求語法

Graph API 測試工具
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
}];

欄位

名稱 說明 類型

id

相簿編號。

string

can_upload

觀看者是否可將相片上傳到此相簿。

boolean

count

相簿中相片的大概數量,不一定是確切的數目

int

cover_photo

相簿封面相片的編號。

Photo

created_time

相簿的最初建立時間。

datetime

description

相簿片的說明。

string

event

與此相簿關聯的事件。

Event

from

現有用戶(如果現有用戶建立了相簿)。

User

link

該 Facebook 相簿的連結。

string

location

相簿的文字位置。

string

name

相簿的標題。

string

place

與此相簿關聯的地標。

Page

privacy

相簿的隱私設定。

string

type

相簿的類型。

enum{app, cover, profile, mobile, wall, normal, album}

updated_time

相簿上次更新的時間。

datetime

關係連線

可要求下列關係連線作為路徑參數或使用 fields 查詢字串參數。

關係連線 說明

photos

代表相簿中的相片精選集。

建立

您無法在這個端點執行此操作。

更新

您無法在這個端點執行此操作。

刪除

您無法在這個端點執行此操作。