当前位置: 首页 > 面试题库 >

ROWS是否未在Youtube Analytics API中返回?

章子航
2023-03-14
问题内容

我已经对这个网址的请求:https://www.googleapis.com/youtube/analytics/v1/reports与指标:likes and dislikes

回应:

{
 "kind": "youtubeAnalytics#resultTable",
 "columnHeaders": [
  {
   "name": "likes",
   "columnType": "METRIC",
   "dataType": "INTEGER"
  },
  {
   "name": "dislikes",
   "columnType": "METRIC",
   "dataType": "INTEGER"
  }
 ]
}

我要求的行和实际数据在哪里?在文档中,这是我从youtube请求数据时 应该 返回的内容:

{
  "kind": "youtubeAnalytics#resultTable",
  "columnHeaders": [
    {
      "name": string,
      "dataType": string,
      "columnType": string
    },
    ... more headers ...
  ],
  "rows": [
    [
      {value}, {value}, ...
    ]
  ]
}

但是我没有“行”:[]数据。我的帐户是否没有任何分析功能,或者我做错了什么?

如果我能alt=jsonalt=csv我得到null返回。


问题答案:

在docs中:“如果没有数据可用于给定查询,则将在响应中省略rows元素。”



 类似资料:
  • 问题内容: 我做了异步。现在我可以使用了。 这是示例代码: 所以这里的问题是回报承诺,因为我可以使用它吗? 编辑 当我等待时,它将按顺序运行;当我删除等待时,它将运行? 问题答案: 通常不与promises一起使用,因为很少有这种需求。如果在状态更新()之后调用的方法依赖于更新的状态(),则它可以通过其他方式(例如,作为参数)访问它。 使用回调并且不返回承诺。由于很少需要这样做,因此创建未使用的承

  • Sorting and filtering in Nested rows is currently not supported. Overview Quick setup Preparing the data source User interface Overview The Nested Rows plugin extends Handsontable with a new functiona

  • Overview Setup Example API examples Overview The Trim Rows plugin allows trimming specific rows from the table. Rows being trimmed aren't included in a DataMap (gets by the getData method) and they ar

  • Overview Setup Additional options Example API examples Overview The Hidden Rows plugin allows hiding specific rows from the table. Rows being hidden are included in a DataMap (gets by the getData meth

  • 考虑一个案子。我的超类构造函数正在抛出RunTimeException,而子类构造函数没有抛出任何东西..那么它将不会在子类中给出任何编译时错误。为什么连RuntimeException都是未检查的异常?? 古扬·沙阿·塔克斯。

  • You can fix the bottom rows of the table, by using the fixedRowsBottom config option. This way, when you're scrolling the table, the fixed rows will stay at the bottom edge of the table's container. E