/{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 更新文档。