gpt4 book ai didi

c# - 在此行中出现错误 AccountFeed accountFeed = service.Query(query);在谷歌分析

转载 作者:行者123 更新时间:2023-12-03 16:59:32 25 4
gpt4 key购买 nike

  • 这个方法传入什么,在哪里创建这个解析服务
    AnalyticsService 服务 = new AnalyticsService("??????");

  • 2.我想显示谷歌分析报告受众概览
    .aspx 网页。有人试过吗?你可以发送任何示例代码吗
    ?
    3. 我想显示 session 、用户、页面浏览量、页面 session 、平均。
    session 持续时间,谷歌分析网页的跳出率。
    4. 你有这方面的相关代码吗?
    .在这一行出现错误 - AccountFeed accountFeed = service.Query(query);

    错误 - 请求执行失败: https://www.google.com/analytics/feeds/accounts/default
    public partial class _Default : System.Web.UI.Page
    {
    Int32 _intVisists = 0;
    Int32 _intPageViewVisit = 0;
    protected void Page_Load(object sender, EventArgs e)
    {
    RefreshFeed();
    }
    private void RefreshFeed()
    {
    // your Google analytics username and password here
    string userName = "550786864234-3b7j6fs5d8178n36coc1seoshlqf8nlu@developer.gserviceaccount.com";
    string passWord = "s-fP2XFJNYDkMPoCm5o61Cpp";
    const string dataFeedUrl = "https://www.google.com/analytics/feeds/data";


    AccountQuery query = new AccountQuery();
    AnalyticsService service = new AnalyticsService("AnalyticsSampleApp");
    if (!string.IsNullOrEmpty(userName))
    {
    service.setUserCredentials(userName, passWord);
    }
    string str = "";
    AccountFeed accountFeed = service.Query(query);
    foreach (AccountEntry entry in accountFeed.Entries)
    {
    str = entry.ProfileId.Value;
    }

    最佳答案

    确实,google-api-dotnet-client是.net 4.0的分钟。因此,如果你不能使用 .net 4.0,你就不能使用 Google 不错的客户端库。

    客户端库所做的只是让您无需使用客户端库即可手动使用 Oauth2 连接到 Google Analytics。我个人已经在几个项目上不得不这样做,因为我必须支持.net 3.5。

    所有这一切中最困难的部分将是身份验证。它分为 3 个部分,您可能需要使用 Web 浏览器控件,这是我发现的最简单的部分。

    所有这些的代码都非常广泛。我有一个关于它的旧教程,它是我的第一个教程,并且有一段时间没有更新,欢迎您看看它可能会帮助您入门。 Google API and Oauth2

    关于c# - 在此行中出现错误 AccountFeed accountFeed = service.Query(query);在谷歌分析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28734691/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com