/{group-doc-id}
表示 Facebook 群組內的文件。/{group-doc-id}
節點會傳回單個文件。
GET /v21.0/{group-doc-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(
'/{group-doc-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(
"/{group-doc-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{group-doc-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:@"/{group-doc-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
OPEN
)屬性名稱 | 描述 | 類型 |
---|---|---|
| 群組文件編號。 |
|
| 建立此文件的個人檔案。 | |
| 文件標題。 |
|
| 文件正文。此字串將包含文件中所有格式設定的 HTML 代碼,並且採用 HTML 編碼。 |
|
| 文件圖示的網址 |
|
| 文件建立時間。 |
|
| 文件上次變更的時間。 |
|
| 表示文件目前修訂版本的編號。 |
|
| 連線階段用戶能否編輯此文件。 |
|
| 連線階段用戶能否刪除此文件(在 Facebook.com 上)。 |
|
| 文件內嵌內容的網址 |
|
您不可透過 Graph API 建立文件。
您不可透過 Graph API 刪除文件。
您不可透過 Graph API 更新文件。