/{milestone-id}
หมายถึงเหตุการณ์สำคัญบนเพจ Facebook
GET /v21.0/{milestone-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(
'/{milestone-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(
"/{milestone-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{milestone-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:@"/{milestone-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
หากต้องการดูเหตุการณ์สำคัญของเพจใดๆ ที่แชร์เป็นสาธารณะ คุณจะต้องใช้รายการดังต่อไปนี้
หากต้องการดูเหตุการณ์สำคัญของเพจที่คุณจัดการ คุณจะต้องใช้รายการดังต่อไปนี้
ชื่อ | คำอธิบาย | ประเภท |
---|---|---|
| ID งานกิจกรรมของเหตุการณ์สำคัญ |
|
| ชื่อเหตุการณ์สำคัญ |
|
| เพจที่โพสต์เหตุการณ์สำคัญ | |
| คำอธิบายเหตุการณ์สำคัญ |
|
| เวลาที่สร้างเหตุการณ์สำคัญ |
|
| เวลาที่อัพเดตเหตุการณ์สำคัญ |
|
| เวลาที่เริ่มต้นเหตุการณ์สำคัญ |
|
| เวลาที่สิ้นสุดเหตุการณ์สำคัญ ซึ่งเหตุการณ์สำคัญของเพจจะมีเวลาเริ่มต้นและเวลาสิ้นสุดเดียวกัน |
|
คุณไม่สามารถดำเนินการนี้กับตำแหน่งข้อมูลนี้ได้
โปรดใช้ตำแหน่งข้อมูล /{page-id}/milestones
เพื่อสร้างเหตุการณ์สำคัญใหม่สำหรับเพจ
หากต้องการลบเหตุการณ์สำคัญของเพจที่คุณจัดการ คุณจะต้องใช้รายการดังต่อไปนี้
DELETE /v21.0/{milestone-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->delete(
'/{milestone-id}',
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(
"/{milestone-id}",
"DELETE",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{milestone-id}",
null,
HttpMethod.DELETE,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{milestone-id}"
parameters:params
HTTPMethod:@"DELETE"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
ไม่จำเป็นต้องลบช่องใดๆ
หากสำเร็จ การแสดงผลจะเป็นดังนี้
{ "success": true }
หากไม่เป็นเช่นนั้น ระบบจะส่งคืนข้อความแสดงข้อผิดพลาดที่เกี่ยวข้อง
คุณไม่สามารถดำเนินการนี้กับตำแหน่งข้อมูลนี้ได้