6

アプリの投稿からリーチを取得する方法はありますか?

例: 私のアプリは特定のファン ページに写真を投稿します。私のアプリがどれほど素晴らしいかを示すために、私のアプリがそのファンページに提供したリーチを取得したいと考えています。

4

1 に答える 1

7

管理するページのページ アクセス トークンを使用する ( read_insights Permissionを使用)。

その後、アクセス/POST_ID/insightsして、その投稿に関するインサイト情報を取得できます。

私のページのサンプル投稿の場合、これは投稿のインプレッション データを返します。抜粋:

{
      "id": "[ID REMOVED]/insights/post_story_adds_by_action_type/lifetime", 
      "name": "post_story_adds_by_action_type", 
      "period": "lifetime", 
      "values": [
        {
          "value": {
            "like": 20, 
            "comment": 3, 
            "share": 1
          }
        }
      ], 
      "title": "Lifetime Post Stories by action type", 
      "description": "Lifetime The number of stories created about your Page post, by action type. (Total Count)"
    }, 
    {
      "id": "[ID REMOVED]/insights/post_impressions_unique/lifetime", 
      "name": "post_impressions_unique", 
      "period": "lifetime", 
      "values": [
        {
          "value": 936
        }
      ], 
      "title": "Lifetime Post Total Reach", 
      "description": "Lifetime The number of people who saw your Page post. (Unique Users)"
    }, 
    {
      "id": "[ID REMOVED]/insights/post_impressions/lifetime", 
      "name": "post_impressions", 
      "period": "lifetime", 
      "values": [
        {
          "value": 2936
        }
      ], 
      "title": "Lifetime Post Total Impressions", 
      "description": "Lifetime The number of impressions of your Page post. (Total Count)"
    }, 

これが開始されたときのブログ投稿は次のとおりです: https://developers.facebook.com/blog/post/573/ そして、insights接続は投稿ドキュメントに記載されています

于 2012-08-21T18:47:08.123 に答える