Memberikan daftar orang yang menyukai objek ini. Saat membaca suka di Halaman atau objek Pengguna, endpoint ini memberikan daftar halaman yang disukai oleh Halaman atau Pengguna itu.
Gunakan kolom likes
dari objek untuk mendapatkan jumlah suka.
Kami rekomendasikan gunakan endpoint /object/reactions
demi mendapatkan jumlah suka, jika tersedia.
Endpoint /likes
objek berikut didukung untuk Pengalaman Halaman Baru:
|
total_count
dengan parameter summary
yang tersedia untuk suka Postingan.like
termasuk reaksi "suka" dan "peduli".
total_count
mewakili perkiraan jumlah suka, akan tetapi jumlah aktual hasil yang dikembalikan mungkin berbeda, bergantung pada pengaturan privasi.GET /{group-post-id}/likes
dan GET /{post-id}/likes
dihentikan di v8.0+ dan dihentikan di semua versi tanggal 2 Nov 2020. Nama Properti | Deskripsi | Jenis |
---|---|---|
| Total jumlah suka Pengguna dan Halaman pada objek. Agar kolom ini dikembalikan, Anda harus menyertakan parameter dan nilai |
|
curl -i -X GET "https://graph.facebook.com/{object-id} ?fields=likes.summary(true) &access_token={access-token}"
{ "likes": { "data": [ { "name": "Bill the Cat", "id": "155111347875779", "created_time": "2017-06-18T18:21:04+0000" }, { "name": "Calvin and Hobbes", "id": "257573197608192", "created_time": "2017-06-18T18:21:02+0000" }, { "name": "Berkeley Breathed's Bloom County", "id": "108793262484769", "created_time": "2017-06-18T18:20:58+0000" } ], "paging": { "cursors": { "before": "Nzc0Njg0MTQ3OAZDZD", "after": "NTcxODc1ODk2NgZDZD" }, "next": "https://graph.facebook.com/vX.X/me/likes?access_token=user-access-token&pretty=0&summary=true&limit=25&after=NTcxODc1ODk2NgZDZD" }, "summary": { "total_count": 136 } }, "id": "user-id" }
Sukai objek.
Endpoint /likes
objek berikut didukung untuk Pengalaman Halaman Baru:
|
POST /v21.0/{object-id}/likes HTTP/1.1
Host: graph.facebook.com
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post(
'/{object-id}/likes',
array (),
'{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}/likes",
"POST",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{object-id}/likes",
null,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{object-id}/likes"
parameters:params
HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
CREATE_CONTENT
di Halamanpages_manage_engagement
Tidak diperlukan adanya kolom untuk menambahkan suka.
Setelah berhasil, aplikasi akan menerima tanggapan berikut:
{ "success": true }
Anda tidak dapat melakukan operasi ini di endpoint ini.
Hapus suka pada objek Halaman menggunakan endpoint ini.
DELETE /v21.0/{object-id}/likes HTTP/1.1
Host: graph.facebook.com
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->delete(
'/{object-id}/likes',
array (),
'{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}/likes",
"DELETE",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{object-id}/likes",
null,
HttpMethod.DELETE,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{object-id}/likes"
parameters:params
HTTPMethod:@"DELETE"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
MODERATE
di Halamanpages_manage_engagement
likes
-nya sendiri.Tidak ada kolom untuk endpoint ini.
Setelah berhasil, aplikasi akan menerima tanggapan berikut:
{ "success": true }