/{milestone-id}
هذا يمثل الإنجاز في صفحة فيسبوك.
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
}];
لعرض الإنجازات المشتركة لأي صفحة للعامة، ستحتاج إلى ما يلي:
لعرض إنجازات الصفحات التي تديرها، ستحتاج إلى ما يلي:
الاسم | الوصف | النوع |
---|---|---|
| معرف حدث الإنجاز |
|
| عنوان الإنجاز |
|
| الصفحة التي نشرت الإنجاز. | |
| وصف الإنجاز |
|
| وقت إنشاء الإنجاز |
|
| وقت تحديث الإنجاز |
|
| وقت بدء الإنجاز |
|
| وقت انتهاء الإنجاز. يكون لإنجازات الصفحة وقت البدء والانتهاء ذاته |
|
لا يمكنك إجراء هذه العملية على نقطة النهاية هذه.
استخدم نقطة النهاية /{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 }
بخلاف ذلك سيتم إرجاع رسالة خطأ ذات صلة.
لا يمكنك إجراء هذه العملية على نقطة النهاية هذه.