如何通过管理获取自定义数据源的自定义维度API?

How to get custom dimensions of a custom data source via management API?

Google 管理 API 提供获取 custom data sources and custom dimensions.

列表的方法

但是,我需要获取属于自定义数据集的自定义维度列表,但找不到方法。有可能吗?

很遗憾,这是不可能的。关于自定义数据源的唯一可用数据如下:

{
  "id": string,
  "kind": "analytics#customDataSource",
  "selfLink": string,
  "accountId": string,
  "webPropertyId": string,
  "name": string,
  "description": string,
  "type": string,
  "uploadType": "analytics#uploads",
  "uploadType": "analytics#dailyUploads",
  "importBehavior": "OVERWRITE",
  "importBehavior": "SUMMATION",
  "profilesLinked": [
    string
  ],
  "created": datetime,
  "updated": datetime,
  "parentLink": {
    "type": "analytics#webproperty",
    "href": string
  },
  "childLink": {
    "type": "analytics#dailyUploads",
    "href": string
  },
  "childLink": {
    "type": "analytics#uploads",
    "href": string
  }
}