這份文件指的是已經過期的 Graph API 版本。 請使用最新版本。
Graph API 版本
這份文件已更新。
中文(香港) 的翻譯尚未完成。
英文更新時間:3月14日
中文(香港) 更新時間:2018年10月26日

Page Insights

Represents insights for Facebook Pages and Page posts. Refer to our Pages API documentation.

On March 14, 2024, a number of the Page Insights metrics were deprecated for all API versions. The API returns an invalid metric error when calling any of these metrics. Read our blog to learn more.

閱讀中

Get metrics for Pages or Page posts.

新版專頁體驗

This endpoint is supported for 新版專頁體驗.

Limitations

  • Page Insights data is only available on Pages with 100 or more likes.
  • Most metrics will update once every 24 hours.
  • Only the last two years of insights data is available.
  • The values for period are calculated from the initial collection of the data point.
  • "Period" in the tables below only refers to the time frame for which the metric can be accessed in an aggregated form.
  • The value "lifetime" means the time period for which the insights data is available. By default, this time period is 2 years or shorter.
  • Only 90 days of insights can be viewed at one time when using the since and until parameters.
  • When using since and until, the since date data will be included in the first value returned.
  • Unique impression insights values are calculated independently.
    • Total page reach may not always be exactly equal to the sum of paid and non-paid unique values.
    • Total page reach may not always be exactly equal to the sum of viral_unique and organic_unique.
  • When an organic post is boosted, metrics for paid post impressions will include both organic and paid reach.
  • Demographic metrics, such as age, gender, and location, are only returned if there is data for 100 or more people.
  • Breakdown metrics for Page post and Page view insights will only return non-zero values.
  • Several video related metrics only return accurate values if the person requesting the metric is the Page video post creator.
  • If you reshare a video post of another Page and retrieve its insights, the metrics return a value of 0. Metrics that return 0 for resharers are denoted with "Returns 0 for reshared videos" in their description.
  • If you neglect to indicate a specific metric or metrics for the endpoint, you will receive an error response with code 3001, with subcode 1504028 and an error message that states: "No metric was specified to be fetched. Please specify one or more metrics to be fetched and try again."
  • Interactions on Reels are not included.

Requirements

TypeDescription

Access Tokens

A Page access token requested by a person who can perform the ANALYZE task on the Page.

Features

Not applicable.

Permissions

read_insights, pages_read_engagement

Page Tasks

ANALYZE

Example

Single Metric Sample Request

Graph API Explorer
GET v19.0/{object-id}/insights/{metric} 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(
    '{object-id}/insights/{metric}',
    '{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}/insights/{metric}",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "{object-id}/insights/{metric}",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"{object-id}/insights/{metric}"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];
如果想了解如何使用 Graph API,請參閱我們的使用 Graph API 指南

Multiple Metric Sample Request

Graph API Explorer
GET v19.0/{object-id}/insights?metric={metric-1},{metric-2},{metric-3},... 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(
    '{object-id}/insights?metric={metric-1},{metric-2},{metric-3},...',
    '{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}/insights?metric={metric-1},{metric-2},{metric-3},...",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "{object-id}/insights?metric={metric-1},{metric-2},{metric-3},...",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"{object-id}/insights?metric={metric-1},{metric-2},{metric-3},..."
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];
如果想了解如何使用 Graph API,請參閱我們的使用 Graph API 指南

Metrics

Metric names indicate whether a metric is for a Page or a Page post.

SuffixDescription

_unique

Indicates that the metric shows the number of unique users who performed a specific action, for example page_impressions_unique. Metrics generated with the _unique suffix are approximate and may not be 100% accurate.

_login

Indicates whether a person was logged into Facebook, for example, page_tab_views_login_top.

_logout

Indicates whether a person is logged out of Facebook, for example page_views_logout.

_source

Indicates that the metric will be broken down into a list of referral sources, for example page_fans_by_like_source. External referrals are broken down by domain. Internal referrals are broken down by Facebook-specific features such as Profile, Search, Requests, Suggestions, Stream, etc. In these cases the value returned will be an object containing a series of key-value pairs where the key is the source name and the value is the metric for that source.

*

Indicates that a metric is refreshed several times during the day, for example page_impressions_unique*.

Page Content

Most of the metrics below can be retrieved using post_activity_by_action_type, post_clicks_by_type, and page_consumptions_by_consumption_type.

Metric Name Description Values for `period`
page_tab_views_login_top_unique

用戶登入 Facebook 查看你專頁標籤的次數。 (See possible types)

day, week

page_tab_views_login_top

登入 Facebook 的用戶在你專頁上看過分頁的次數。 (See possible types)

day, week

page_tab_views_logout_top

未登入 Facebook 的用戶瀏覽你專頁標籤的次數。 (See possible types)

day

Tab Types

Tab types for Page content metrics.

Name Description
allactivity

Administrative tab

app

Custom created tab

info

About tab view

insights

Insights tab

likes

Likes tab

locations

Map tab

photos

Photos tab

photos_albums

Photos tab

photos_stream

Photos tab

profile

Pages timeline

profile_info

Info tab

profile_likes

Likes tab

profile_photos

Photos tab

timeline

Pages timeline

events

Events tab

videos

Videos tab

wall

Timeline

Page CTA Clicks

Metric Name Description Values for `period`
page_total_actions

你專頁聯絡資料和呼籲字句按鈕的點擊次數。

day, week, days_28

page_cta_clicks_logged_in_total

Facebook 登入用戶的專頁呼籲字句按鈕點擊總次數。

day, week, days_28

page_cta_clicks_logged_in_unique

已登入 Facebook 的用戶對專頁 CTA 按鈕的不重複點擊次數。

day, week, days_28

page_call_phone_clicks_logged_in_unique

登入 Facebook 後點擊「立即通話」按鈕的用戶人數。

day, week, days_28

page_get_directions_clicks_logged_in_unique

登入 Facebook 後點擊「規劃路線」按鈕的用戶人數。

day, week, days_28

page_website_clicks_logged_in_unique*

登入 Facebook 後點擊「前往網站」CTA 按鈕的用戶人數。

day, week, days_28

Page Engagement

The "like" reaction counts include both "like" and "care" reactions.

Metric Name Description Values for `period`
page_post_engagements*

用戶透過表達心情、回應、分享等方式與你帖子互動的次數。

day, week, days_28

page_consumptions_unique*

點擊你任何內容的用戶人數。

day, week, days_28

page_consumptions_by_consumption_type

用戶點擊你任何內容的次數(依類型區分)。類型包括link_clickother_clickphoto_view,和 video_view

day, week, days_28

page_consumptions_by_consumption_type_unique

點擊過你任何內容的用戶人數(以類型區分)。

day, week, days_28

page_places_checkin_total*

用戶在單一地點簽到的次數。

day, week, days_28

page_places_checkin_total_unique*

在某個地點簽到的用戶人數。

day, week, days_28

page_negative_feedback

用戶採取負面動作(例如取消讚好或隱藏帖子)的次數。

day, week, days_28

page_negative_feedback_unique

採取負面動作(例如:收回讚好或隱藏帖子)的用戶人數。

day, week, days_28

page_negative_feedback_by_type

用戶採取負面動作的次數(依類型區分)。 (See possible types)

day, week, days_28

page_negative_feedback_by_type_unique

採取負面動作的用戶人數,以動作類型細分。 (See possible types)

day, week, days_28

page_fans_online

你的粉絲中在指定日期於 Facebook 看到任何帖子的人數(以太平洋標準時間/太平洋日光時間的每小時區分)。

day

page_fans_online_per_day

你的粉絲在指定日期於 Facebook 看到任何帖子的人數。

day

page_fan_adds_by_paid_non_paid_unique

第一次對你的專頁讚好的帳戶管理中心帳戶數量,依專頁讚好動作是來自付費或自主內容細分。此衡量數據為預計值

day

page_lifetime_engaged_followers_unique*

追蹤你的專頁,且過去 14 天看過你的一部或以上的直播或預錄影片達 1 分鐘,並透過回應、分享、表達心情或讚好與你的影片內容互動過至少一次的用戶。

page_daily_follows*

在所選時間範圍內追蹤你 Facebook 專頁或個人檔案的次數。

day

page_daily_follows_unique*

在所選時間範圍內追蹤你專頁的帳戶管理中心帳戶數量。此衡量數據為預計值

day, week, days_28

page_daily_unfollows_unique*

在所選時間範圍內取消追蹤你專頁的帳戶管理中心帳戶數量。此衡量數據為預計值

day, week, days_28

page_follows*

你 Facebook 專頁或個人檔案的追蹤者人數。計算方式為 Facebook 專頁或個人檔案整體期間內的追蹤人數減去取消追蹤的人數。

day

Page Impressions

Metric Name Description Values for `period`
page_impressions*

任何來自你專頁或有關你專頁的內容(包括帖子、限時動態、廣告,以及你專頁上的其他內容或資訊)進入用戶瀏覽畫面的次數。

day, week, days_28

page_impressions_unique*

任何來自你專頁或有關你專頁的內容(包括帖子、簽到、廣告、曾與你專頁互動用戶的社交資訊和其他內容)進入其瀏覽畫面的用戶人數。此衡量數據為預計值

day, week, days_28

page_impressions_paid*

任何來自你專頁或有關你專頁的帖子或限時動態內容透過付費散佈(例如廣告)進入用戶瀏覽畫面的次數。

day, week, days_28

page_impressions_paid_unique*

看到你的廣告至少一次的帳戶管理中心帳戶數量。接觸人數與展示次數不同,後者會加入同一個帳戶管理中心帳戶重複看到廣告的次數。此衡量數據為預計值

day, week, days_28

page_impressions_organic_v2*

你的 Facebook 專頁和專頁內容透過未自主流通顯示在畫面上的次數。

day, week, days_28

page_impressions_organic_unique_v2*

此衡量數據會計算你 Facebook 專頁和專頁內容透過自主散播所接觸的人數。此衡量數據為預計值

day, week, days_28

page_impressions_viral*

你專頁或有關你專頁的內容與社交資訊一同進入用戶瀏覽畫面的次數。社交資訊會在用戶的朋友與你專頁、帖子或限時動態互動時顯示,包括用戶的朋友讚好你專頁或追蹤你的專頁、與帖子互動、分享你專頁的相片、在你的專頁簽到等。此衡量數據為開發中指標

day, week, days_28

page_impressions_viral_unique*

這項衡量數據會計算因你的 Facebook 專頁和專頁內容(若顯示時會附帶社交資訊)自主或付費流通而產生的接觸人數。社交資訊會在用戶與你的專頁、帖子或限時動態互動後顯示在動態消息中。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值開發中指標

day, week, days_28

page_impressions_nonviral*

你的 Facebook 專頁和專頁內容出現在畫面上的次數(不包括與附加的社交資訊一併顯示時)。社交資訊會在用戶與你的專頁、帖子或限時動態互動後顯示在動態消息中。此衡量數據為開發中指標

day, week, days_28

page_impressions_nonviral_unique*

這項衡量數據會計算因你的 Facebook 專頁和專頁內容(顯示時會附帶社交資訊的情況除外)自主或付費流通而產生的接觸人數。社交資訊會在用戶與你的專頁、帖子或限時動態互動後顯示在動態消息中。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值開發中指標

day, week, days_28

page_impressions_by_story_type

你的 Facebook 專頁和專頁內容出現在畫面上的次數(按專頁限時動態類型分組)。

day, week, days_28

page_impressions_by_story_type_unique

這項衡量數據會計算因你的 Facebook 專頁和專頁內容自主或付費流通而產生的接觸人數(按專頁限時動態類型分組)。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值

day, week, days_28

page_impressions_by_city_unique

這項衡量數據會計算因你的 Facebook 專頁和專頁內容自主或付費流通而產生的接觸人數(按城市分組)。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值

day, week, days_28

page_impressions_by_country_unique

這項衡量數據會計算因你的 Facebook 專頁和專頁內容自主或付費流通而產生的接觸人數(按國家/地區分組)。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值

day, week, days_28

page_impressions_by_locale_unique

這項衡量數據會計算因你的 Facebook 專頁和專頁內容自主或付費流通而產生的接觸人數(按語言分組)。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值

day, week, days_28

page_impressions_by_age_gender_unique

這項衡量數據會計算因你的 Facebook 專頁和專頁內容自主或付費流通而產生的接觸人數(按年齡和性別分組)。此衡量數據為預計值

day, week, days_28

page_impressions_viral_frequency_distribution

這項衡量數據會計算因你的 Facebook 專頁和專頁內容(若顯示時會附帶社交資訊)自主或付費流通而產生的接觸人數。此外,這項衡量數據也會按你的內容出現在畫面上的次數分組。社交資訊會在用戶與你的專頁、帖子或限時動態互動後顯示在動態消息中。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值開發中指標

day, week, days_28

Page Posts

Metric Name Description Values for `period`
page_posts_impressions*

你專頁的帖子(包括近況更新、相片、連結、影片和其他內容)進入用戶瀏覽畫面的次數。

day, week, days_28

page_posts_impressions_unique*

任何你專頁的帖子進入其瀏覽畫面的用戶人數。帖子包括近況、相片、連結、影片等等。

day, week, days_28

page_posts_impressions_paid*

你的 Facebook 專頁和專頁內容出現在畫面上的次數(歸因於你的廣告)。

day, week, days_28

page_posts_impressions_paid_unique*

因你的廣告至少看過你專頁任何帖子一次的帳戶管理中心帳戶數量。此衡量數據為預計值

day, week, days_28

page_posts_impressions_organic*

你專頁的任何帖子透過自主散播出現在畫面中的次數。

day, week, days_28

page_posts_impressions_organic_unique*

任何你專頁帖子透過未付費散佈進入其瀏覽畫面的用戶人數。

day, week, days_28

page_posts_served_impressions_organic_unique

在其動態消息看過你專頁自然帖子的用戶人數(不論是否出現在瀏覽畫面)。帖子包括近況、相片、連結、影片等等。

day, week, days_28

page_posts_impressions_viral*

你專頁的帖子與社交資訊一同進入用戶瀏覽畫面的次數。社交資訊會在用戶的朋友與你專頁或帖子互動時顯示,包括用戶的朋友讚好你專頁或追蹤你的專頁、與帖子互動、分享你專頁的相片、在你的專頁簽到等。

day, week, days_28

page_posts_impressions_viral_unique*

你專頁的帖子與社交資訊一同進入其瀏覽畫面的用戶人數。社交資訊也是自然散佈的一種形式,會在用戶的朋友與你的專頁或帖子互動時出現,包括用戶的朋友讚好你專頁或追蹤你的專頁、與帖子互動、分享你專頁的相片、在你的專頁簽到等。

day, week, days_28

page_posts_impressions_nonviral*

你的專頁帖子(不包括有關你專頁且附有社交資訊的內容)進入用戶瀏覽畫面的次數。社交資訊會在用戶的朋友與你專頁或帖子互動時顯示,包括用戶的朋友讚好你專頁或追蹤你的專頁、與帖子互動、分享你專頁的相片、在你的專頁簽到等。

day, week, days_28

page_posts_impressions_nonviral_unique*

你專頁帖子(不包括有關你專頁且附有社交資訊的內容)進入其瀏覽畫面的用戶人數。社交資訊也是自然散佈的一種形式,會在用戶的朋友與你的專頁或帖子互動時出現,包括用戶的朋友讚好你專頁或追蹤你的專頁、與帖子互動、分享你專頁的相片、在你的專頁簽到等。

day, week, days_28

Page Post Engagement

Metric Name Description Values for `period`
post_engaged_users*

點擊過你帖子任何位置的用戶人數。

lifetime

post_negative_feedback*

用戶在你帖子中採取負面動作(例如隱藏)的次數。

lifetime

post_negative_feedback_unique*

對帖子採取負面動作(例如隱藏帖子)的用戶人數。

lifetime

post_negative_feedback_by_type*

用戶對你的帖子採取負面動作的次數(以類型區分)。

lifetime

post_negative_feedback_by_type_unique*

對帖子採取負面動作的用戶人數(依類型區分)。

lifetime

post_engaged_fan

對專頁「讚好」及與帖子進行互動交流的用戶人數。

lifetime

post_clicks*

用戶點擊你帖子任何一處但未產生動態的次數。

lifetime

post_clicks_unique*

點擊過你帖子任何一處但未產生動態的用戶人數。

lifetime

post_clicks_by_type*

用戶點擊你帖子任何一處但未產生動態的次數(以使用類型區分)。

lifetime

post_clicks_by_type_unique*

點擊過你帖子任何位置但未產生動態的用戶人數(依使用類型區分)。

lifetime

Negative Feedback Types

Negative feedback types for page_negative_feedback_by_type metrics.

Name Description
hide_clicks

Hide this story

hide_all_clicks

Hide all posts from this page

report_spam_clicks

Report an object as a spam

unlike_page_clicks

Unlike a page

Page Post Impressions

Metric Name Description Values for `period`
post_impressions*

你專頁的帖子(包括近況更新、相片、連結、影片和其他內容)進入用戶瀏覽畫面的次數。

lifetime

post_impressions_unique*

你專頁的帖子(包括近況更新、相片、連結、影片和其他內容)進入其瀏覽畫面的用戶人數。此衡量數據為預計值

lifetime

post_impressions_paid*

你的專頁內容出現在畫面上的次數(歸因於你的廣告)。

lifetime

post_impressions_paid_unique*

因你的廣告至少看過你的帖子一次的帳戶管理中心帳戶數量。此衡量數據為預計值

lifetime

post_impressions_fan*

你的專頁內容出現在追蹤或讚好專頁的帳戶畫面上的次數。

lifetime

post_impressions_fan_unique*

帳戶管理中心帳戶追蹤或讚好你專頁的次數。此衡量數據為預計值

lifetime

post_impressions_organic*

你的帖子透過自主散播出現在畫面中的次數。

lifetime

post_impressions_organic_unique*

此衡量數據會計算你的 Facebook 內容(包括帖子、限時動態和廣告)透過自主散播所接觸的人數。來自分享的接觸人數只會計入自主內容,這包括你的內容透過限時動態或轉發分享的情況。此衡量數據為預計值

lifetime

post_impressions_viral*

你的專頁內容在畫面上顯示時附加了社交資訊的次數。社交資訊會在用戶與你的專頁、帖子或限時動態互動後顯示在動態消息中。此衡量數據為開發中指標

lifetime

post_impressions_viral_unique*

當你的 Facebook 內容以轉發或限時動態形式分享時,此衡量數據會計算接觸人數。來自分享的接觸人數只會計入自主散播。此衡量數據為預計值開發中指標

lifetime

post_impressions_nonviral*

你的專頁內容(顯示時會附帶社交資訊的情況除外)出現在畫面上的次數。社交資訊會在用戶與你的專頁、帖子或限時動態互動後顯示在動態消息中。此衡量數據為開發中指標

lifetime

post_impressions_nonviral_unique*

這項衡量數據會計算因你的專頁內容(若顯示時會附帶社交資訊)自主或付費流通而產生的接觸人數。社交資訊會在用戶與你的專頁、帖子或限時動態互動後顯示在動態消息中。如果是同時因自主和付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值開發中指標

lifetime

post_impressions_by_story_type*

你的專頁內容出現在畫面上的次數(按專頁限時動態類型分組)。

lifetime

post_impressions_by_story_type_unique*

這項衡量數據會計算因你的專頁內容自主或付費流通而產生的接觸人數(按專頁限時動態類型分組)。如果是因自主或付費流通而產生接觸,則只會計算一次接觸。此衡量數據為預計值

lifetime

post_impressions_by_paid_non_paid*

依付費和自主散播分類,你的專頁內容出現在畫面中的次數。

lifetime

Page Post Reactions

The "like" reaction counts include both "like" and "care" reactions.

Metric Name Description Values for `period`
post_reactions_like_total

帖子收到的「讚好」心情總數。

lifetime

post_reactions_love_total

帖子收到的「勁正」心情總數。

lifetime

post_reactions_wow_total

帖子收到的「嘩」心情總數。

lifetime

post_reactions_haha_total

帖子收到的「哈哈」心情總數。

lifetime

post_reactions_sorry_total

帖子收到的「慘慘」心情總數。

lifetime

post_reactions_anger_total

帖子收到的「嬲嬲」心情總數。

lifetime

post_reactions_by_type_total

帖子收到的心情總數(依類型)。

lifetime

Page Reactions

The "like" reaction counts include both "like" and "care" reactions.

Metric Name Description Values for `period`
page_actions_post_reactions_like_total*

每日:專頁的帖子「讚好」心情總計。

day, week, days_28

page_actions_post_reactions_love_total*

每日專頁的帖子「勁正」心情總數。

day, week, days_28

page_actions_post_reactions_wow_total*

粉絲專頁的每日帖子「嘩」心情總數。

day, week, days_28

page_actions_post_reactions_haha_total*

專頁的每日帖子「哈哈」心情總數。

day, week, days_28

page_actions_post_reactions_sorry_total*

每日專頁的帖子「慘慘」心情總數。

day, week, days_28

page_actions_post_reactions_anger_total*

每日專頁的帖子「嬲嬲」心情總數。

day, week, days_28

page_actions_post_reactions_total

專頁的每日帖子心情總數(以類型區分)。

day

Page User Demographics

Metric Name Description Values for `period`
page_fans

讚好你專頁的總人數。

day

page_fans_locale

根據存取 Facebook 時所選預設語言設定,對你的專頁讚好的人的相關彙總語言資料。

day

page_fans_city

依照城市顯示對專頁讚好的用戶整合 Facebook 地點資料。

day

page_fans_country

讚好你專頁的用戶人數(每個國家/地區的彙總人數)。僅包含讚好你專頁的用戶人數最多的 45 個國家/地區。

day

page_fan_adds

對你的專頁讚好的新使用者人數。

day

page_fan_adds_unique

首次對你的專頁讚好的帳戶管理中心帳戶數量。此衡量數據為預計值

day, week, days_28

page_fan_removes

對你的專頁取消讚好的次數。

day

page_fan_removes_unique*

對你的專頁取消讚好的次數。

day, week, days_28

Page Like Sources

Source types for page_fans_by_like_source and page_fans_by_like_source_unique metrics.

Name Description
Ads

Page likes that came from people who saw your Page or post in an ad.

News Feed

Page likes that came from people who saw content posted by your Page or about your Page in News Feed.

Page Suggestions

Page likes that came from people saw your Page in a list of suggested Pages.

Restored Likes from Reactivated Accounts

Page likes that came from people who reactivated their Facebook profile.

Search

Page likes that came from people who saw you Page or post in search.

Your Page

Page likes that came from people who visited your Page.

Page Video Views

Metric Name Description Values for `period`
page_video_views

你的專頁影片播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_by_uploaded_hosted*

Daily video views on a page-level broken down by all variants of page-uploaded and page-hosted variants.

day, week, days_28

page_video_views_paid

你專頁的推廣影片播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

day, week, days_28

page_video_views_organic

用戶自然散佈接觸你的專頁影片並播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_by_paid_non_paid*

你的專頁影片播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數(依總數、付費和非付費區分)。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_autoplayed

你的專頁影片自動播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_click_to_play

用戶點擊播放後,你的專頁影片播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_unique

觀看你的專頁影片至少 3 秒或接近完整播放(若影片短於 3 秒)的用戶人數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_repeat_views

你的專頁影片重播至少 3 秒或接近完整重播(若影片短於 3 秒)的次數。

day, week, days_28

page_video_complete_views_30s

你的專頁影片播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_complete_views_30s_paid

你專頁的推廣影片播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

day, week, days_28

page_video_complete_views_30s_organic

用戶自然散佈接觸你的專頁影片並播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_complete_views_30s_autoplayed

你專頁的影片自動播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_complete_views_30s_click_to_play

用戶點擊播放後,你的專頁影片播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_complete_views_30s_unique

觀看你的專頁影片至少 30 秒或接近完整播放(若影片短於 30 秒)的用戶人數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_complete_views_30s_repeat_views

你的專頁影片播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。

day, week, days_28

post_video_complete_views_30s_autoplayed

你的影片自動播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_30s_clicked_to_play

用戶點擊播放之後,你的影片播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_30s_organic

用戶自然散佈接觸你的影片並播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_30s_paid

你的推廣影片播放至少 30 秒或接近完整播放(若影片短於 30 秒)的次數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_30s_unique

觀看你的影片至少 30 秒或接近完整播放(若影片短於 30 秒)的用戶人數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

page_video_views_10s

針對圖形 API v18 以上版本停用:你的專頁影片播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_10s_paid

針對圖形 API v18 以上版本停用:你專頁的推廣影片播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

day, week, days_28

page_video_views_10s_organic

針對圖形 API v18 以上版本停用:用戶自主接觸你的專頁影片並播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_10s_autoplayed

針對圖形 API v18 以上版本停用:你的專頁影片自動播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_10s_click_to_play

針對圖形 API v18 以上版本停用:用戶點擊播放後,你的專頁影片播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_10s_unique

針對圖形 API v18 以上版本停用:觀看你的專頁影片至少 10 秒或接近完整播放(若影片短於 10 秒)的用戶人數。針對影片的每次展示,我們將會扣除重播影片的所有時間。

day, week, days_28

page_video_views_10s_repeat

針對圖形 API v18 以上版本停用:你的專頁影片重播至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。

day, week, days_28

page_video_view_time

每位用戶觀看你專頁影片的總時間(毫秒)。

day

page_uploaded_video_play_count_by_paid_non_paid*

專頁上任何影片開始播放的總次數,依付費或非付費渠道區分。

page_uploaded_3s_to_15s_views_rate*

影片觀看 3 秒到 15 秒的比率。衡量的範圍是所有上載的影片素材,而且計算內容包括帖子/多重發佈帖子或其分享帖子上的任何動態。

page_uploaded_views_15s_count*

用戶觀看你專頁影片至少 15 秒的次數總計。

page_uploaded_views_60s_excludes_shorter_unique_count_by_is_60s_returning_viewer*

Daily video 60-second unique views on a page for uploaded videos by 60-second returning viewers. This metric counts only for videos that are 60 seconds or longer. 60-second returning viewers are the users who had 60-second view last week and a 60-second view this week.

Page Views

Metric Name Description Values for `period`
page_views_total*

已登入用戶和未登入用戶查看專頁個人檔案的次數。

day, week, days_28

Page Video Posts

Metric Name Description Values for `period`
post_video_avg_time_watched

用戶觀看你影片的平均時間(毫秒)。只適用於 2016 年 8 月 25 日以後建立的影片。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_organic

用戶自主接觸你的影片並從頭播放至總長度 97% 以上的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_organic_unique

自主接觸你的影片並從頭觀看至總長度 97% 以上的用戶人數。針對影片的每次播放,我們將會扣除重播影片的所有時間。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_paid

你的推廣影片從頭播放至總長度 97% 以上的次數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。轉貼影片的結果一律是 0。

lifetime

post_video_complete_views_paid_unique

從頭觀看你的推廣影片至總長度 97% 以上的用戶人數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

lifetime

post_video_retention_graph*

你的影片在各個時段的播放次數佔所有觀看次數的百分比。影片會均分成 40 個片段。此數據不計入影片直播時的展示次數。在續看率圖表中,影片中後段的展示次數可能會多於影片開頭。用戶可能會從中間開始觀看影片、快轉、儲存並從該時間點重新觀看,或採取其他類似動作。

lifetime

post_video_retention_graph_clicked_to_play

用戶點擊播放後,你的影片在各個時段的播放次數佔所有觀看次數的百分比。影片會均分成 40 個片段。此數據不計入影片直播時的展示次數。在續看率圖表中,影片中後段的展示次數可能會多於影片開頭。用戶可能會從中間開始觀看影片、快轉、儲存並從該時間點重新觀看,或採取其他類似動作。

lifetime

post_video_retention_graph_autoplayed

你的影片在各個時段的自動播放次數佔所有自動觀看次數的百分比。影片會均分成 40 個片段。此數據不計入影片直播時的展示次數。在續看率圖表中,影片中後段的展示次數可能會多於影片開頭。用戶可能會從中間開始觀看影片、快轉、儲存並從該時間點重新觀看,或採取其他類似動作。

lifetime

post_video_views_organic

用戶自然散佈接觸你的影片並播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime, day

post_video_views_organic_unique

自然散佈接觸你的影片並觀看至少 3 秒或接近完整播放(若影片短於 3 秒)的用戶人數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_paid

你的推廣影片播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

lifetime, day

post_video_views_paid_unique

觀看你的推廣影片至少 3 秒或接近完整播放(若影片短於 3 秒)的用戶人數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

lifetime

post_video_length

影片帖子的時間長度(毫秒)。

lifetime

post_video_views

你的影片播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。這會包含直播觀看次數。

lifetime, day

post_video_views_unique

觀看你的影片至少 3 秒或接近完整播放(若影片短於 3 秒)的用戶人數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

day, lifetime

post_video_views_autoplayed

你的影片自動播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_clicked_to_play

用戶點擊播放後,你的影片播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_15s*

你的影片播放至少 15 秒或接近完整播放(若影片短於 15 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_60s_excludes_shorter*

你的專頁影片播放至少 60 秒的次數。此衡量數據僅將長度 60 秒以上的影片納入計算。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime, day

post_video_views_10s

針對圖形 API v18 以上版本停用:你的影片播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime, day

post_video_views_10s_unique

針對圖形 API v18 以上版本停用:觀看你的影片至少 10 秒或接近完整播放(若影片短於 10 秒)的用戶人數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

lifetime

post_video_views_10s_autoplayed

針對圖形 API v18 以上版本停用:你的影片自動播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_10s_clicked_to_play

針對圖形 API v18 以上版本停用:用戶點擊播放後,你的影片播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_10s_organic

針對圖形 API v18 以上版本停用:用戶自主接觸你的影片並播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_10s_paid

針對圖形 API v18 以上版本停用:你的推廣影片播放至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次展示,我們將會分別計算影片觀看次數,並扣除重播影片的所有時間。

lifetime, day

post_video_views_10s_sound_on

針對圖形 API v18 以上版本停用:用戶開啟音效播放你影片至少 10 秒或接近完整播放(若影片短於 10 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_views_sound_on

你的影片有聲播放至少 3 秒或接近完整播放(若影片短於 3 秒)的次數。針對影片的每次播放,我們將會扣除重播影片的所有時間。

lifetime

post_video_view_time

你的影片播放總時間(毫秒),重播和播放不到 3 秒的時間也算在內。轉貼影片的結果一律是 0。

lifetime, day

post_video_view_time_organic

用戶自然散佈接觸你影片並播放的總時間(毫秒)。轉貼影片的結果一律是 0。

lifetime, day

post_video_view_time_by_age_bucket_and_gender

最喜愛你影片的觀眾(年齡和性別)播放影片的總時間(毫秒)。

lifetime

post_video_view_time_by_region_id

你影片在最受歡迎的前 45 個地點(區域 - 國家/地區)的播放總時間(毫秒)。

lifetime, day

post_video_views_by_distribution_type

依照發佈類型(擁有/分享的專頁)分類的影片播放次數。

lifetime

post_video_view_time_by_distribution_type

依照發佈類型(擁有/分享的專頁)分類的影片播放總時間(毫秒)。

lifetime

post_video_view_time_by_country_id

你影片受歡迎的前 45 個地點(國家/地區)的播放總時間(分鐘)。

lifetime

post_video_views_live*

直播串流時,觀看你的影片超過 3 秒的總用戶人數。

lifetime

post_video_social_actions_count_unique*

影片帖子收到的不重複社交動作次數(心情數、回應數、分享次數)。

lifetime, day

post_video_play_count*

影片的播放次數。

post_video_live_current_viewers*

正在觀看直播視像的觀眾人數。此衡量數據只會傳回直播視像帖子的資料。直播影片帖子的結果一律是 0。

post_video_15s_to_60s_excludes_shorter_views_rate*

影片觀看 15 秒到 60 秒的比率。此 60 秒衡量數據僅將長度 60 秒或以上的影片納入計算。

post_video_views_by_live_status*

Lifetime 3S Video Views broken down by live status: live or VOD

Stories

Page and Post Stories and "People talking about this".

Metric Name Description Values for `period`
post_activity_by_action_type*

因為你專頁帖子而建立的相關動態數量(依動作類型區分)。

lifetime

post_activity_by_action_type_unique*

因為你專頁帖子而建立相關動態的用戶人數(依動作類型區分)。

lifetime

Page Story Types

Name Description
checkin

Page checkins

coupon

Offer claims

event

RSVPing to event

fan

Page likes

mention

Page mentions

page post

Posts by a Page

question

Question answers

user post

Posts by people on a Page

other

Other types

Video Ad Breaks

Metric Name Description Values for period

page_daily_video_ad_break_ad_impressions_by_crosspost_status

The total number of times an ad was shown during ad breaks in crossposted videos.

day

page_daily_video_ad_break_cpm_by_crosspost_status

The average amount paid by advertisers for 1,000 of impressions of their ads in a crossposted videos. This is a gross number and includes the amount paid to Facebook.

day

page_daily_video_ad_break_earnings_by_crosspost_status

An estimate of the amount you earned from ad breaks in a crossposted videos, based on the number of impressions and CPM of ads shown. Actual payments may differ if there are content ownership claims or other adjustments.

day

post_video_ad_break_ad_impressions

The total number of times an ad was shown during ad breaks in your videos.

day, lifetime

post_video_ad_break_earnings

An estimate of the amount you earned from ad breaks in your videos, based on the number of impressions and CPM of ads shown. Actual payments may differ if there are content ownership claims or other adjustments.

day, lifetime

post_video_ad_break_ad_cpm

The average amount paid by advertisers for 1,000 impressions of their ads in your videos. This number also includes the amount paid to Facebook.

day, lifetime

參數

參數描述
breakdown
list<A valid breakdown for an insights endpoint>

breakdown for marketing messages metrics. This is currently in development.

date_preset
enum{today, yesterday, this_month, last_month, this_quarter, maximum, data_maximum, last_3d, last_7d, last_14d, last_28d, last_30d, last_90d, last_week_mon_sun, last_week_sun_sat, last_quarter, last_year, this_week_mon_today, this_week_sun_today, this_year}

Preset a date range, like lastweek, yesterday. If since or until presents, it does not work.

metric
list<A valid metric for an insights endpoint>

The list of metrics that needs to be fetched

period
enum {day, week, days_28, month, lifetime, total_over_range}

The aggregation period

show_description_from_api_doc
boolean
預設值:false

If set to true, then an additional description of the metric, retrieved from the API doc(https://developers.facebook.com/docs/graph-api/reference/insights) will be included in the returned data

since
datetime

Lower bound of the time range to consider

until
datetime

Upper bound of the time range to consider

欄位

由此關係連線進行的閱讀將回傳 JSON 格式結果:

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

data

InsightsResult 節點的清單。

paging

如需更多有關分頁的詳細資料,請參閱 Graph API 指南

Error Codes

錯誤說明
100Invalid parameter
190Invalid OAuth 2.0 Access Token
200Permissions error
80001There have been too many calls to this Page account. Wait a bit and try again. For more info, please refer to https://developers.facebook.com/docs/graph-api/overview/rate-limiting.
3001Invalid query
104Incorrect signature

建立中

你無法在此端點執行此操作。

更新中

你無法在此端點執行此操作。

正在刪除

你無法在此端點執行此操作。

See Also