إصدار ‏‎Graph API‎‏

Ads Pixel Stats

قراءة

AdsPixelStats

مثال

Graph API Explorer
GET /v19.0/{ads-pixel-id}/stats 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(
    '/{ads-pixel-id}/stats',
    '{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(
    "/{ads-pixel-id}/stats",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{ads-pixel-id}/stats",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/{ads-pixel-id}/stats"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];
إذا كنت تريد التعرف على كيفية استخدام واجهة Graph API، يرجى قراءة ‏دليل استخدام واجهة Graph API‏.

المعلمات

معلمةالوصف
aggregation
enum{browser_type, custom_data_field, device_os, device_type, event, host, match_keys, had_pii, pixel_fire, event_detection_method, url, event_value_count, url_by_rule, event_total_counts, event_source, event_processing_results}
القيمة الافتراضية: ‏‎event‎‏

The aggregation to use for the stats. Default: event.
browser_type: Get the number of pixel fires per browser type, broken down by hour.
custom_data_field: Get the number of pixel fires for the top 100 custom data fields of an event broken down by hour.
device_os: Get the number of pixel fires per mobile device OS, broken down by hour.
device_type: Get the number of pixel fires per mobile device type, broken down by hour.
event: Get the number of pixel fires for the top 100 events broken down by hour.
host: Get the number of pixel fires for the top 10,000 hosts broken down by hour.
url: Get the number of pixel fires for the top 10,000 URLs broken down by hour. Please note that query parameters are stripped from the URLs.
pixel_fire: Get the number of pixel fires by hour.
event_total_counts: Get the number of pixel fires for all events over the entire time span.

end_time
datetime/timestamp
القيمة الافتراضية: ‏1715912381

The end time of the stats, in the format of Unix or ISO 8601 timestamp. You can get the data up to seven days from the request time.

event
string

Specify which event to aggregate on, when the aggregation is custom_data_field

event_source
string

Specify WEB_ONLY or SERVER_ONLY to filter the pixel events and stats

start_time
datetime/timestamp

The start time of the stats, in the format of Unix or ISO 8601 timestamp.

الحقول

ستؤدي القراءة من عنصر الربط هذا إلى نتيجة بتنسيق JSON:

{ "data": [], "paging": {} }

data

قائمة عُقد ‏‎AdsPixelStatsResult‎‏.

paging

لمزيد من التفاصيل عن تقسيم الصفحات، يرجى الاطلاع على ‏دليل Graph API‏.

‎Error Codes‎

خطأالوصف
100Invalid parameter
368The action attempted has been deemed abusive or is otherwise disallowed
80004There have been too many calls to this ad-account. Wait a bit and try again. For more info, please refer to https://developers.facebook.com/docs/graph-api/overview/rate-limiting#ads-management.
190Invalid OAuth 2.0 Access Token
200Permissions error

إنشاء

لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.

جارٍ التحديث

لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.

جارٍ الحذف

لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.