如何判断是否使用Google AnalyticsService删除了网络媒体资源?

时间:2012-10-02 23:47:59

标签: c# google-api google-analytics-api

我正在使用Google Analytics Api从我的Google Analytics帐户中获取web property information

当我登录analaytics时,我只有一个网站,但通过api,我得到了几个(旧的和删除的网站)

我的代码是这样的:

        var provider = new WebServerClient(GoogleAuthenticationServer.Description)
                           {
                               ClientIdentifier = _appId,
                               ClientSecret = _appSecret
                           };

        var auth = new OAuth2Authenticator<WebServerClient>(provider, x => new AuthorizationState { AccessToken = token });
        var analyticsService = new AnalyticsService(auth);

        var accounts = analyticsService.Management.Accounts.List().Fetch();

        foreach (var account in accounts.Items)
        {
            var webProperties = analyticsService.Management.Webproperties.List(account.Id).Fetch();

            // todo: determine if web property is still in use?
        }

从代码中如何判断哪些仍处于活动状态?

1 个答案:

答案 0 :(得分:0)

所以经过一番挖掘。

似乎没有任何标志或类似的东西表明它已被删除,但如果你继续深入挖掘结果集,你会注意到在配置文件级别,没有子项的配置文件似乎是删除了一个。

这是有道理的,我猜不会有与已删除的个人资料相关联的个人资料。

var provider = new WebServerClient(GoogleAuthenticationServer.Description)
                           {
                               ClientIdentifier = _appId,
                               ClientSecret = _appSecret
                           };

        var auth = new OAuth2Authenticator<WebServerClient>(provider, x => new AuthorizationState { AccessToken = token });
        var analyticsService = new AnalyticsService(auth);

        var accounts = analyticsService.Management.Accounts.List().Fetch();
        var result = new List<Profile>();

        foreach (var account in accounts.Items)
        {
            var webProperties = analyticsService.Management.Webproperties.List(account.Id).Fetch();

            foreach (var webProperty in webProperties.Items)
            {
                var profiles = analyticsService.Management.Profiles.List(account.Id, webProperty.Id).Fetch();

                if (profiles.Items != null && profiles.Items.Any())
                {
                    // these are the ones we want
                    result.AddRange(profiles.Items);
                }
            }

        }
    }