/{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 上)。 |
|
| 文件內嵌的網址 |
|
您不能透過圖形 API 建立文件。
您不能透過圖形 API 刪除文件。
您不能透過圖形 API 更新文件。