傳回對物件的回應。
對於使用專頁公開內容存取權限功能的應用程式,系統將不再傳回 /PAGEPOST-ID/comments
端點的 id
欄位。如需存取專頁帖子的回應編號,您必須能夠在查詢的專頁上執行 MODERATE 任務。此變更已於 11.0 版及以上版本生效,並將於 2021 年 9 月 7 日在所有版本中實施。
新版專頁體驗支援以下物件 /comments
端點:
|
|
filter
參數設為 stream
,或使用 order
欄位。/PAGEPOST-ID/comments
端點的 id
欄位。如需存取專頁帖子的回應編號,您必須能夠在查詢的專頁上執行 MODERATE 任務。
如果物件擁有的回應多得數以萬計,您可能會在分頁時遇到限制。請參閱 Graph 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}" }
您無法使用此關係連線作出更新。