그래프 API 버전

그룹 동영상

Facebook 그룹에서 소유한 동영상.

읽기

동영상 개체의 배열을 반환합니다.

그래프 API 탐색기
GET /v21.0/{group-id}/videos 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(
    '/{group-id}/videos',
    '{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(
    "/{group-id}/videos",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{group-id}/videos",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/{group-id}/videos"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

요구 사항

요구 사항 유형설명

앱 검수

앱이 그룹 API 기능에 대한 승인을 받아야 합니다.

앱 설치

앱이 그룹에 설치되어 있어야 합니다.

토큰

사용자 액세스 토큰입니다.

만들기

지원되지 않는 작업입니다.

사용자 타임라인, 그룹 또는 페이지에 동영상을 게시하려면 공유 대화 상자를 사용하세요.

업데이트

지원되지 않는 작업입니다.

삭제

지원되지 않는 작업입니다.