이 그룹에 업로드된 파일입니다.
GET /v21.0/{group-id}/files 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}/files',
'{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}/files",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{group-id}/files",
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}/files"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
이름 | 설명 | 유형 |
---|---|---|
| 파일을 다운로드하기 위한 URL입니다. |
|
| 파일이 업로드되는 그룹(요청에 있는 것과 동일한 그룹)입니다. | |
| 파일의 ID입니다. 각 파일은 ID별로 따로 요청할 수 없고, 이 에지를 통해서만 요청할 수 있습니다. |
|
| 파일 게시물과 함께 포함된 텍스트입니다. |
|
| 파일이 마지막으로 변경된 시간입니다. |
|
지원되지 않는 작업입니다.
지원되지 않는 작업입니다.
지원되지 않는 작업입니다.