需要有关Analytics API的帮助 - 网络媒体资源名称和帐户名称(.Net中)

时间:2013-11-15 19:47:23

标签: c# .net google-analytics

我正在使用Google Analytics Dot.Net库下载Google Analytics数据。我可以使用AnalyticsService对象获取报告数据。它返回Google.Apis.Analytics.v3.Data.GaData。我的查询包含维度,指标和profileid(查看ID)。

我需要知道帐户名称和Web属性名称,遗憾的是返回的GaData有webPropertyId和accountid,但不是名称。 我如何得到这个名字?

我试过了 -

GaData response = analyticsservice.Execute();
var webproperty = service.Management.Webproperties.Get(response.ProfileInfo.AccountId,response.ProfileInfo.WebPropertyId);

但是这个返回的webproperty没有名称。

1 个答案:

答案 0 :(得分:1)

我不确定.net,但对于其他库,您可以使用Management API来检索帐户名称等。