傳回物件的留言。
系統將不再透過粉絲專頁公開內容存取功能為應用程式傳回/PAGEPOST-ID/comments
端點的 id
欄位。若要存取粉絲專頁貼文的留言編號,您必須能夠在查詢中的粉絲專頁執行 MODERATE 工作。此變更在 11.0 以上版本中生效,將於 2021 年 9 月 7 日在所有版本中實施。
以下物件 /comments
端點支援新版粉絲專頁體驗驗:
|
|
filter
參數設為 stream
或使用 order
欄位。/PAGEPOST-ID/comments
端點的 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 的未發佈相片選用編號(請查看 |
| 加入 GIF 的網址做為動畫 GIF 留言。發佈時必須提供 |
| 加入圖像的網址做為相片留言。發佈時必須提供 |
| 使用編碼為表單資料的相片做為相片留言。發佈時必須提供 |
| 留言內文。發佈時必須提供 使用下列語法在
|
成功時,您會收到具有新建留言編號的 JSON 回應。另外,此端點支援寫入後讀取功能,可立即傳回讀取作業傳回的任何欄位。
{ "id": "{comment-id}" }
您無法使用這個關係連線更新內容。