ดูข้อมูลเชิงลึกโดยใช้ Facebook Video API จาก Meta

คู่มือนี้อธิบายวิธีดูข้อมูลเชิงลึกของวิดีโอที่ได้รับการเผยแพร่บนเพจ Facebook

เรียนรู้เพิ่มเติมเกี่ยวกับข้อมูลเชิงลึกของคลิป Reels

ก่อนเริ่มต้น

คุณต้องมีสิ่งต่อไปนี้

ข้อจำกัด

  • ข้อมูลเชิงลึกของวิดีโอที่เผยแพร่บนกลุ่มหรือผู้ใช้บน Facebook ยังไม่พร้อมใช้งาน
  • วิดีโอแบบแชร์ข้ามโพสต์จะมี <VIDEO_ID> ที่ไม่ซ้ำกันสำหรับแต่ละเพจที่โพสต์วิดีโอนั้นๆ ลงไป

ดูข้อมูลเชิงลึกทั้งหมด

ส่งคำขอ GET ไปยังตำแหน่งข้อมูล /<VIDEO_ID>/video_insights เพื่อดูข้อมูลเชิงลึกทั้งหมดจากโพสต์แบบวิดีโอทุกรายการที่เกี่ยวข้องกับวิดีโอนี้

GET <API_VERSION>/<VIDEO_ID>/video_insights?access_token=<PAGE_ACCESS_TOKEN>"

ตัวอย่างคำขอ

curl -X GET \
 "https://graph.facebook.com/v20.0/323790578640877/video_insights?access_token=EAABkW..."

ตัวอย่างการตอบกลับ

{
  "data": [
    {
      "name": "total_video_views",
      "period": "lifetime",
      "values": [
        {
          "value": 89
        }
      ],
      "title": "Lifetime Total Video Views",
      "description": "Lifetime: Total number of times your video was viewed for 3 seconds or viewed to the end, whichever came first. (Total Count)",
      "id": "323790578640877/video_insights/total_video_views/lifetime"
    },
    {
      "name": "total_video_views_unique",
      "period": "lifetime",
      "values": [
        {
          "value": 56
        }
      ],
      "title": "Lifetime Unique Video Views",
      "description": "Lifetime: Number of unique people who viewed your video for 3 seconds or viewed to the end, whichever came first. (Unique Users)",
      "id": "323790578640877/video_insights/total_video_views_unique/lifetime"
    },
    {
      "name": "total_video_views_autoplayed",
      "period": "lifetime",
      "values": [
        {
          "value": 23
        }
      ],
      "title": "Lifetime Auto-Played Video Views",
      "description": "Lifetime: Number of times your video started automatically playing and people viewed it for 3 seconds or viewed it to the end, whichever came first. (Total Count)",
      "id": "323790578640877/video_insights/total_video_views_autoplayed/lifetime"
    },
    {
      "name": "total_video_views_clicked_to_play",
      "period": "lifetime",
      "values": [
        {
          "value": 12
        }
      ],
    }
    ...
  ]
}   

รับเกณฑ์ชี้วัดข้อมูลเชิงลึกแบบเฉพาะเจาะจง

ส่งคำขอ GET ไปยังตำแหน่งข้อมูลของข้อมูลเชิงลึกเกี่ยวกับวิดีโอ พร้อมระบุพารามิเตอร์ metric และเกณฑ์ชี้วัดเฉพาะเจาะจงที่คุณต้องการรับ

GET /&lt;API_VERSION>/&lt;VIDEO_ID>/video_insights
  ?metric=total_video_views,total_video_views_unique
  &access_token=&lt;PAGE_ACCESS_TOKEN>"

ตัวอย่างคำขอ

curl -X GET \
  "https://graph.facebook.com/v20.0/323790578640877/video_insights?metric=total_video_views,total_video_views_unique&access_token=EAABkW..."

ตัวอย่างการตอบกลับ

{
  "data": [
    {
      "name": "total_video_views",
      "period": "lifetime",
      "values": [
        {
          "value": 2206
        }
      ],
      "title": "Lifetime Total Video Views",
      "description": "Lifetime: Total number of times your video was viewed for 3 seconds or viewed to the end, whichever came first. (Total Count)",
      "id": "323790578640877/video_insights/total_video_views/lifetime"
    },
    {
      "name": "total_video_views_unique",
      "period": "lifetime",
      "values": [
        {
          "value": 6
        }
      ],
      "title": "Lifetime Unique Video Views",
      "description": "Lifetime: Number of unique people who viewed your video for 3 seconds or viewed to the end, whichever came first. (Unique Users)",
      "id": "323790578640877/video_insights/total_video_views_unique/lifetime"
    }
  ]
}