オブジェクトのコメントが返されます。
/PAGEPOST-ID/comments
エンドポイントのid
フィールドは、ページの公開コンテンツへのアクセス機能を使用するアプリでは返されなくなりました。ページ投稿のコメントIDにアクセスするには、クエリ対象のページでMODERATEタスクを実行できることが必須です。この変更はv11.0以上で適用されており、2021年9月7日にすべてのバージョンで実装されます。
以下のオブジェクトの/comments
エンドポイントは、新しいページエクスペリエンスでサポートされています。
|
|
filter
パラメーターをstream
に設定するか、order
フィールドを利用してください。/PAGEPOST-ID/comments
エンドポイントのid
フィールドは、ページの公開コンテンツへのアクセス機能を使用するアプリでは返されなくなりました。ページ投稿のコメントIDにアクセスするには、クエリ対象のページでMODERATEタスクを実行できることが必須です。
数万件のコメントがあるオブジェクトの場合、ページングの際に制限を受けることがあります。ページングについて詳しくは、グラフAPIの利用ガイドをご覧ください。
GET /v21.0/{object-id}/comments 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(
'/{object-id}/comments',
'{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(
"/{object-id}/comments",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{object-id}/comments",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{object-id}/comments"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
GET /v21.0/{object-id}/comments?summary=1&filter=toplevel 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(
'/{object-id}/comments?summary=1&filter=toplevel',
'{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(
"/{object-id}/comments",
{
"summary": true,
"filter": "toplevel"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
Bundle params = new Bundle();
params.putBoolean("summary", true);
params.putString("filter", "toplevel");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{object-id}/comments",
params,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
NSDictionary *params = @{
@"summary": @YES,
@"filter": @"toplevel",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{object-id}/comments"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
パラメーター | 説明 |
---|---|
| オブジェクトのコメントに関するメタデータの概要。重要な点として、このメタデータにはコメントの並べ替え方法を示す |
| ある人がコメントに返信できる場合、トップレベルのコメント、投稿への直接のコメント、またはすべてのコメントの時系列順にコメントをフィルタリングすることができます。
|
リクエストでsummary
がtrue
に設定された場合、以下のフィールドに加えてコメントオブジェクトの配列が返されます。
フィールド | 説明 |
---|---|
| コメントが返された順序。
|
| このノードのコメント数。重要な点として、この値は使用される
注: コメントのプライバシー設定や削除により、 |
任意のオブジェクトに新規コメントを公開します。
以下のオブジェクトの/comments
エンドポイントは、新しいページエクスペリエンスでサポートされています。
|
|
MODERATE
タスクを実行できる人がリクエストしたページアクセストークンpages_manage_engagement
アクセス許可注: 個々のコメントオブジェクトのcan_comment
フィールドは、そのコメントに返信できるかどうかを示します。
POST /v21.0/{object-id}/comments HTTP/1.1
Host: graph.facebook.com
message=This+is+a+test+comment
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post(
'/{object-id}/comments',
array (
'message' => 'This is a test comment',
),
'{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(
"/{object-id}/comments",
"POST",
{
"message": "This is a test comment"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
Bundle params = new Bundle();
params.putString("message", "This is a test comment");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{object-id}/comments",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
NSDictionary *params = @{
@"message": @"This is a test comment",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{object-id}/comments"
parameters:params
HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
名前 | 説明 |
---|---|
| 写真のコメントとして組み込むためにFacebookにアップロードされた非公開の写真のID(省略可能)。 |
| アニメーションGIFのコメントとして組み込まれるGIFのURL。公開する際に、 |
| 写真のコメントとして組み込まれる画像のURL。公開する際に、 |
| 写真コメントとして使用する、フォームデータとしてエンコードされた写真。公開する際に、 |
| コメントのテキスト。公開する際に、 次の構文を使って、
|
成功すると、新しく作成されたコメントIDを含むJSON応答を受け取ります。また、このエンドポイントはリードアフターライトをサポートしており、読み取り操作で返されたフィールドをすぐに返すことができます。
{ "id": "{comment-id}" }
このエッジを使ってコメントを更新することはできません。