0

我正在使用 Facebook 分析应用程序,我想获取特定日期的数据,但我只获取应用程序事件名称,而不是它们的计数和其他任何内容

{
  "data": [
{
  "id": 259755087814076,
  "start_ts": "2017-02-18T00:00:00+0000",
  "end_ts": "2017-02-18T23:53:20+0000",
  "status": "RUNNING",
  "column_names": [
    "server_time",
    "event_name",
    "client",
    "app_version",
    "numeric_data",
    "event_log_time",
    "custom1",
    "custom2",
    "custom3",
    "custom4",
    "custom5",
    "custom6",
    "custom7",
    "custom8",
    "custom9",
    "custom10",
    "custom11",
    "custom12",
    "custom13",
    "custom14",
    "custom15",
    "custom16",
    "custom17",
    "custom18",
    "custom19",
    "custom20",
    "custom21",
    "custom22",
    "custom23",
    "custom24",
    "custom25",
    "analytics_app_id",
    "ad_tracking_enabled",
    "usd_amount",
    "ext_user_agent",
    "ext_device_model",
    "ext_device_os",
    "timezone",
    "ext_carrier",
    "screen_dimensions",
    "total_disk_gb",
    "remaining_disk_gb",
    "invoking_ui_element",
    "is_device_id_anonymous",
    "raw_advertiser_id"
  ],
  "event_param_names": [
    {
      "event_name": "fb_page_view"
    },
    {
      "event_name": "fb_web_new_user",
      "param_names": [
        "original_event",
        "segments",
        "untruncated_event"
      ]
    },
    {
      "event_name": "Google Login"
    },
    {
      "event_name": "Login"
    },
    {
      "event_name": "SignUp"
    },
    {
      "event_name": "Facebook Login"
    }

我能否获得计数,或者我将仅获得应用事件名称而不是数据

4

1 回答 1

0

基于您粘贴的 JSON。看起来您的导出作业仍在运行: "status": "RUNNING" 作为导出 API 的一部分,可以导出和下载过去 30 天的 RAW 事件数据。请参阅以下链接中的每个事件的导出字段列表: https ://developers.facebook.com/docs/analytics/export

于 2017-02-28T17:26:55.560 回答