我正在使用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没有名称。