dql123000 2017-02-24 14:02
浏览 41
已采纳

Google Analytics报告Api - PHP:添加用户帐户

What I want to do

  • Let user of my web application share their analytics account with the app.
  • Redirect the user to Google authentication which ask them to approve access
  • Redirect the user back to the app.
  • Generate a report for the user based on his analytics data and data from the app.
  • Next time the user will generate their report I don't want to ask them for the logging again.

Where the problem is

I read this Google developers PHP guide. However, the sample code connects to first account that is already shared with the app.

I want to see a piece of code that ask user for their credentials and consequently provides access to their account.

On Stack I've already found this answer Service Applications and Google Analytics API V3: Server-to-server OAuth2 authentication?. However, mentioned APP_EMAIL is not a particular user's e-mail, but developer.gserviceaccount.com identification for the app created in the console.

Also I found this thread Google Analytics Core Reporting API Version 3.0 without client login. It seems that similar topic is solved there, but the important part of code (from my point of view) is missing there.

  • 写回答

1条回答 默认 最新

  • douyi9787 2017-02-24 14:21
    关注

    First of all, make sure to grab refresh token by settings access type to offline. Then Create a separate page for reporting. Separate page should be using account id and refresh token for all reporting, and if it gives you an error on token, you can either refresh it yourself, or send them back to login page.

    you only need to ask for credentials once and you get access to all accounts. The php guide only uses the first account, however you can iterate through all of them and get more

    $client = new Google_Client();
    $client->setAuthConfig(__DIR__ . '/creds/client_secrets.json');
    $client->setIncludeGrantedScopes(true);
    $client->setAccessType("offline");
    $client->setApprovalPrompt('force');
    $client->addScope(Google_Service_Analytics::ANALYTICS_EDIT);
    $client->addScope(Google_Service_Analytics::ANALYTICS_READONLY);
    
    // If the user has already authorized this app then get an access token
    // else redirect to ask the user to authorize access to Google Analytics.
    if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
            // Set the access token on the client.
            $client->setAccessToken($_SESSION['access_token']);
            // Create an authorized analytics service object.
            $analytics = new Google_Service_Analytics($client);
            $accounts=getAccountIds($analytics);
            foreach($accounts as $acc)
            {
             var_dump($acc);
    }
    }
    else {
            $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/oauth2callback.php';
            header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签)
  • ¥50 sft下载大文阻塞卡死
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失
  • ¥15 springboot+vue 集成keycloak sso到阿里云
  • ¥15 win7系统进入桌面过一秒后突然黑屏
  • ¥30 backtrader对于期货交易的现金和资产计算的问题
  • ¥15 求C# .net4.8小报表工具
  • ¥15 安装虚拟机时出现问题