إصدار ‏‎Graph API‎‏

الإنجاز /{milestone-id}

هذا يمثل الإنجاز في صفحة فيسبوك.

الدلائل ذات الصلة

القراءة

مستكشف Graph API
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

معرف حدث الإنجاز

string

title

عنوان الإنجاز

string

from

الصفحة التي نشرت الإنجاز.

Page

description

وصف الإنجاز

string

created_time

وقت إنشاء الإنجاز

datetime

updated_time

وقت تحديث الإنجاز

datetime

start_time

وقت بدء الإنجاز

datetime

end_time

وقت انتهاء الإنجاز. يكون لإنجازات الصفحة وقت البدء والانتهاء ذاته

datetime

الإنشاء

لا يمكنك إجراء هذه العملية على نقطة النهاية هذه.

استخدم نقطة النهاية /{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
}

بخلاف ذلك سيتم إرجاع رسالة خطأ ذات صلة.

التحديث

الأذونات

لا يمكنك إجراء هذه العملية على نقطة النهاية هذه.

عناصر الربط

الاسم الوصف

/likes

قائمة تسجيلات الإعجاب.

/comments

قائمة التعليقات.