그래프 API 버전

사진첩

사진첩을 나타냅니다.

읽기

GET /{album-id}

사진첩에서 필드에지를 가져옵니다.

요구 사항

요구 사항은 사진첩이 있는 노드의 유형에 따라 달라집니다.

요구 사항사용자 노드페이지 노드그룹 노드

액세스 토큰

전체

전체

사용자

기능

없음

작업을 수행할 수 없는 페이지의 공개 페이지 콘텐츠를 가져오려면 Page Public Content Access가 필요합니다.

없음

권한

user_photos

비공개 페이지:

공개 페이지:

없음

그룹 역할

해당 사항 없음

해당 사항 없음

관리자

요청 구문

그래프 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

사진첩 ID.

string

can_upload

보는 사용자가 이 사진첩에 사진을 업로드할 수 있는지 여부.

boolean

count

사진첩에 있는 대략적인 사진 수. 정확한 개수일 필요는 없습니다.

int

cover_photo

사진첩 커버 사진의 ID.

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

사진첩에서 사진 컬렉션을 나타냅니다.

만들기

이 엔드포인트에서는 해당 작업을 수행할 수 없습니다.

업데이트

이 엔드포인트에서는 해당 작업을 수행할 수 없습니다.

삭제

이 엔드포인트에서는 해당 작업을 수행할 수 없습니다.