Google Analytics OAuth2:如何解决错误:“redirect_uri_mismatch"? [英] Google Analytics OAuth2: How to solve error: "redirect_uri_mismatch"?

查看:36
本文介绍了Google Analytics OAuth2:如何解决错误:“redirect_uri_mismatch"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试让这个例子起作用:

奇怪的是,如果我导航到错误消息访问......以更新授权.."中包含的上面的链接,我会收到此错误消息:OAuth 客户端不存在"

如果我点击我唯一可用的客户端 ID,我可以导航以查看 URI,我也会在下面截图:

如您所见,在 Authorized Javascript origins 下,我列出了 http://localhost,并在授权的重定向 URI 下,我有我的实时站点,后跟oauthc2callback.php"文件扩展名.

我不明白如何摆脱我遇到的错误.我试过替换 URI 并放入不同的 JavaScript 来源.

此外,出于某种原因,在最后一个屏幕截图中,它表示我无权编辑此 OAuth 客户端,但我可以进行编辑.

我的 index.php 代码:

setAuthConfigFile('../config/client_secrets.json');$client->addScope('https://www.googleapis.com/auth/analytics.readonly');//如果用户已经授权此应用程序,则获取访问令牌//else 重定向以要求用户授权访问 Google Analytics.如果 (isset($_SESSION['access_token']) && $_SESSION['access_token']) {//在客户端设置访问令牌.$client->setAccessToken($_SESSION['access_token']);//创建一个授权的分析服务对象.$analytics = new Google_Service_Analytics($client);//获取授权用户的第一个视图(配置文件)ID.$profile = getFirstProfileId($analytics);//从 Core Reporting API 获取结果并打印结果.$results = getResults($analytics, $profile);打印结果($结果);} 别的 {$redirect_uri = 'http://' .$_SERVER['HTTP_HOST'] .'/oauth2callback.php';header('位置:' .filter_var($redirect_uri, FILTER_SANITIZE_URL));}函数 getFirstprofileId(&$analytics) {//获取用户的第一个视图(个人资料)ID.//获取授权用户的账户列表.$accounts = $analytics->management_accounts->listManagementAccounts();if (count($accounts->getItems()) > 0) {$items = $accounts->getItems();$firstAccountId = $items[0]->getId();//获取授权用户的属性列表.$properties = $analytics->management_webproperties->listManagementWebproperties($firstAccountId);如果(计数($properties->getItems())> 0){$items = $properties->getItems();$firstPropertyId = $items[0]->getId();//获取授权用户的视图(配置文件)列表.$profiles = $analytics->management_profiles->listManagementProfiles($firstAccountId, $firstPropertyId);如果(计数($profiles->getItems())>0){$items = $profiles->getItems();//返回第一个视图(配置文件)ID.返回 $items[0]->getId();} 别的 {throw new Exception('没有找到此用户的浏览量(个人资料).');}} 别的 {throw new Exception('没有找到这个用户的属性.');}} 别的 {throw new Exception('没有找到这个用户的账户.');}}函数 getResults(&$analytics, $profileId) {//调用 Core Reporting API 并查询会话数//过去 7 天.返回 $analytics->data_ga->get('嘎:'.$个人资料ID,'7天前','今天​​','ga:sessions');}函数打印结果(&$results) {//解析来自 Core Reporting API 的响应并打印//配置文件名称和总会话数.如果(计数($ 结果-> getRows())> 0){//获取配置文件名称.$profileName = $results->getProfileInfo()->getProfileName();//获取第一行中第一个条目的条目.$rows = $results->getRows();$sessions = $rows[0][0];//打印结果.打印<p>找到的第一个视图(个人资料):$profileName</p>";打印 "<p>总会话数:$sessions</p>";} 别的 {打印 "

未找到结果.</p>";}}

oauth2callback.php"的代码:

setAuthConfigFile('../config/client_secrets.json');$client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] .'/oauth2callback.php');$client->addScope('https://www.googleapis.com/auth/analytics.readonly');//处理来自服务器的授权流程.if (!isset($_GET['code'])) {$auth_url = $client->createAuthUrl();header('位置:' .filter_var($auth_url, FILTER_SANITIZE_URL));} 别的 {$client->authenticate($_GET['code']);$_SESSION['access_token'] = $client->getAccessToken();$redirect_uri = 'http://' .$_SERVER['HTTP_HOST'] .'/';header('位置:' .filter_var($redirect_uri, FILTER_SANITIZE_URL));}

所有这些代码都取自第一个网站示例,除了一些小的添加以使其与我的系统相匹配.

有谁知道我怎样才能摆脱这个错误?我做错了什么?

解决方案

请记住,就 Google 而言,您的"服务器是敌对的,直到您将其命名为友好",您必须明确将 OAuth 的所有可能来源都列入白名单致电 Google.

Google 是一个clubbouncer,一个大的、丑陋的、不可动摇的保镖,有一份客人名单对你的申请说:如果你的确切姓名或身份证在名单上,我才会处理你的请求"

您是否尝试过不仅包括 localhost,还包括所有其他可能的来源?

您必须列出网址root"的所有可能变体,包括显式 IP.

http://www.example.comhttp://example.comhttps://example.comhttps://www.example.comhttp://222.111.0.111...

不要忘记包含

https://accounts.google.com:443

I'm trying to get this example to work: https://developers.google.com/analytics/devguides/config/mgmt/v3/quickstart/web-php#enable

The error I'm getting is "Error: redirect_uri_mismatch" .

In order to install the google api resources, I used composer with this command:

php composer.phar require google/apiclient:^2.0.0@RC

This installed the "vendor" folder in my root site folder. My index.php and oauth2callback.php files are located in the "public_html" folder.

Here's a screenshot of my error when going to my site:

The weird thing is that if I navigate to the link above that's included in the error message "Visit ...... to update the authorized..", I get this error message: " The OAuth Client Does Not Exist "

If I click on my only available Client ID, I can navigate to see the URI's which I'll screenshot below as well:

As you can see, under Authorized Javascript origins, I have http://localhost listed, and under authorized redirect URIs, I have my live site followed by the "oauthc2callback.php" file extension.

I don't understand how to get rid of the error I'm getting. I've tried replacing the URI's and putting in different JavaScript origins.

Also, for some reason on that last screenshot, it says that I don't have permission to edit this OAuth client, but I can make edits.

The code I have for index.php:

<?php
// Load the Google API PHP Client Library.
require_once '../vendor/autoload.php';

// Start a session to persist credentials.
session_start();

// Create the client object and set the authorization configuration
// from the client_secretes.json you downloaded from the developer console.
$client = new Google_Client();
$client->setAuthConfigFile('../config/client_secrets.json');
$client->addScope('https://www.googleapis.com/auth/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);

    // Get the first view (profile) id for the authorized user.
    $profile = getFirstProfileId($analytics);

    // Get the results from the Core Reporting API and print the results.
    $results = getResults($analytics, $profile);
    printResults($results);
} else {
    $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/oauth2callback.php';
    header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
}


function getFirstprofileId(&$analytics) {
    // Get the user's first view (profile) ID.

    // Get the list of accounts for the authorized user.
    $accounts = $analytics->management_accounts->listManagementAccounts();

    if (count($accounts->getItems()) > 0) {
        $items = $accounts->getItems();
        $firstAccountId = $items[0]->getId();

        // Get the list of properties for the authorized user.
        $properties = $analytics->management_webproperties
        ->listManagementWebproperties($firstAccountId);

        if (count($properties->getItems()) > 0) {
            $items = $properties->getItems();
            $firstPropertyId = $items[0]->getId();

            // Get the list of views (profiles) for the authorized user.
            $profiles = $analytics->management_profiles
            ->listManagementProfiles($firstAccountId, $firstPropertyId);

            if (count($profiles->getItems()) > 0) {
                $items = $profiles->getItems();

                // Return the first view (profile) ID.
                return $items[0]->getId();

            } else {
                throw new Exception('No views (profiles) found for this user.');
            }
        } else {
            throw new Exception('No properties found for this user.');
        }
    } else {
        throw new Exception('No accounts found for this user.');
    }
}

function getResults(&$analytics, $profileId) {
    // Calls the Core Reporting API and queries for the number of sessions
    // for the last seven days.
    return $analytics->data_ga->get(
    'ga:' . $profileId,
    '7daysAgo',
    'today',
    'ga:sessions');
}

function printResults(&$results) {
    // Parses the response from the Core Reporting API and prints
    // the profile name and total sessions.
    if (count($results->getRows()) > 0) {

        // Get the profile name.
        $profileName = $results->getProfileInfo()->getProfileName();

        // Get the entry for the first entry in the first row.
        $rows = $results->getRows();
        $sessions = $rows[0][0];

        // Print the results.
        print "<p>First view (profile) found: $profileName</p>";
        print "<p>Total sessions: $sessions</p>";
    } else {
        print "<p>No results found.</p>";
    }
}

The code I have for "oauth2callback.php":

<?php
require_once '../vendor/autoload.php';

// Start a session to persist credentials.
session_start();

// Create the client object and set the authorization configuration
// from the client_secrets.json you downloaded from the Developers Console.
$client = new Google_Client();
$client->setAuthConfigFile('../config/client_secrets.json');
$client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] . '/oauth2callback.php');
$client->addScope('https://www.googleapis.com/auth/analytics.readonly');

// Handle authorization flow from the server.
if (! isset($_GET['code'])) {
    $auth_url = $client->createAuthUrl();
    header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL));
} else {
    $client->authenticate($_GET['code']);
    $_SESSION['access_token'] = $client->getAccessToken();
    $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/';
    header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
}

All of this code was taken from the first website example, except with a few minor additions to make it match my system.

Anyone know how I can get rid of this error? What am I doing wrong?

解决方案

Remember, as far as Google is concerned, "your" server is hostile until you name it "friendly", you must explicitly whitelist every possible source of an OAuth call TO Google.

Google is a clubbouncer, a big, ugly, unmovable bouncer with a a guest list saying to your application: "I will only deal with your request if your exact name OR id is on the list"

Have you tried including, not only localhost, but all other possible origins?

You must list every possible variation of url "root", including explicit IPs.

http://www.example.com
http://example.com
https://example.com
https://www.example.com
http://222.111.0.111
...

dont forget to include

https://accounts.google.com:443

这篇关于Google Analytics OAuth2:如何解决错误:“redirect_uri_mismatch"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆