/{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
になっている)場合は、有効なアクセストークンプロパティ名 | 説明 | 型 |
---|---|---|
| グループドキュメントのID。 |
|
| このドキュメントを作ったプロフィール。 | |
| ドキュメントのタイトル。 |
|
| ドキュメントの本文。この文字列には、ドキュメント内の任意のフォーマット用HTML が含められ、HTMLでエンコードされます。 |
|
| ドキュメントのアイコンのURL |
|
| ドキュメント作成日時。 |
|
| ドキュメントの最終更新時。 |
|
| 現在のドキュメントの改訂を表すID。 |
|
| セッションユーザーがこのドキュメントを編集できるかどうか。 |
|
| セッションユーザーがこのドキュメントを(Facebook.comで)削除できるかどうか。 |
|
| ドキュメント埋め込み用URL |
|
グラフAPIでドキュメントを作成することはできません。
グラフAPIでドキュメントを削除することはできません。
グラフAPIでドキュメントを更新することはできません。