1

我正在编写一个页面,该页面通过 gapi.auth.authorize 使用 OAuth 2.0 来验证 Google+ 用户和 gapi.client.request 以运行 Google Fusion Tables sqlGet 查询。我发现我的查询在身份验证之前运行良好,但在身份验证后运行超过 30 秒时失败并出现 403“权限不足”错误。

此页面演示了该问题: https ://googledrive.com/host/0B5Urq1jZb1MYSWloU3NTY2M4Qnc/test3b.htm

请按照以下步骤操作:

  1. 单击“查询”以运行 gapi.client.request Google Fusion Table SQL-get 查询,返回行数。这将成功运行,直到在步骤 2 和 3 中使用 OAuth。

  2. 单击“开始 OAuth”以针对 Google+ 运行即时:真实授权。如果您当前已登录 Google+,您的用户名和 ID 将显示在第三个按钮中。

  3. 如果您的 Google+ 用户名未显示在第三个按钮中,请单击按钮(“授权”)并登录 Google+。

  4. 再次单击“查询”按钮。在 OAuth 授权后约 30 秒内按下查询将运行而不会出错。之后,查询失败并出现 403 错误。为什么?

以下是演示页面的来源:

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0" />

    <title>Test3b</title>

    <style type="text/css">
    </style>

    <script src="scripts/jquery-1.10.2.min.js" type="text/javascript"></script>

    <script type="text/javascript">
        var g_domIsReady = false;
        var g_gapiIsReady = false;

        $(function () {
            log("@$(function())");
            g_domIsReady = true;
            start();
        });

        function gapiIsReady() {
            log("@gapiIsReady");
            g_gapiIsReady = true;
            start();
        }

        function start() {

            // Make sure both the gapi.client and the DOM (per jquery) are ready.

            if (!(g_gapiIsReady && g_domIsReady)) return;

            // Define members.

            log("@start - gapi and DOM are ready");

            var m_apiKey = "AIzaSyAvb0NHQMwyPbMJRtz2zRL4wTiVjZDiois";  // Points to Google account (including Google Drive) at paloalto@geodesy.net.
            var m_clientId = "868768273487-q295tdfr54uvo98v74891qakcr9ci0pf.apps.googleusercontent.com";
            var m_scopes = "https://www.googleapis.com/auth/plus.me";

            // Wire buttons.

            var queryButton = document.getElementById('query-button');
            queryButton.onclick = function () { runGetRequest(); return false; };
            var startOAuthButton = document.getElementById('startOAuth-button');
            startOAuthButton.onclick = function () { startOAuth(); return false; };

            // Set-up the gapi.

            gapi.client.setApiKey(m_apiKey);

            //----------------------------------------------------------------------------
            // gapi.client.request query functions.
            //----------------------------------------------------------------------------

            function runGetRequest() {
                log("@runGetRequest");
                var tableId = "1VZgvKyuh9uHXkQawpxg1MU8AlO8Mngl-sx7SP74";  // TR_TREE_E
                var sql = "select count(GID) from " + tableId + " where GID > 50000";
                var path = "/fusiontables/v1/query";
                var restRequest = gapi.client.request({
                    path: path,
                    params: { 'sql': sql }
                });
                restRequest.execute(jsonCallback);
            }

            function jsonCallback(json) {
                log("@jsonCallback");
                var output = JSON.stringify(json);
                log(output);
                alert(output);
            }

            //----------------------------------------------------------------------------
            // OAuth functions.
            //----------------------------------------------------------------------------

            function startOAuth() {

                log("@startOAuth");

                var authorizeButton = document.getElementById('authorize-button');
                window.setTimeout(checkAuth, 1);  // check auth in 1 ms

                function checkAuth() {
                    log("@checkAuth");
                    gapi.auth.authorize({
                        client_id: m_clientId,
                        scope: m_scopes,
                        immediate: true
                    }, handleAuthResult);
                }

                function handleAuthResult(authResult) {
                    log("@handleAuthResult");
                    if (authResult && !authResult.error) {
                        log("@handleAuthResult - authResult=true");
                        log(authResult);  // authResult is a token (with 3600 second expiration).
                        authorizeButton.disabled = true;
                        useAuthResults();
                    } else {
                        log("@handleAuthResult - authResult=false");
                        authorizeButton.disabled = false;
                        authorizeButton.onclick = handleAuthClick;
                    }
                }

                function handleAuthClick() {
                    log("@handleAuthClick");
                    gapi.auth.authorize({
                        client_id: m_clientId,
                        scope: m_scopes,
                        immediate: false
                    }, handleAuthResult);
                    return false;
                }

                function useAuthResults() {
                    log("@useAuthResults");
                    // Get the Google+ user's ID and name (member info).
                    gapi.client.load('plus', 'v1', function () {
                        log("@gapi.client.load callback");
                        var request = gapi.client.plus.people.get({ 'userId': 'me' });
                        request.execute(function (aInfo) {
                            log("@request.execute callback");
                            if (aInfo.code !== undefined) {
                                alert('Google+ API returned ' + aInfo.code + ': ' + aInfo.message);
                            } else {
                                // Here with successful sign-in.  Display the user name.
                                log('Google+ user id, name: ' + aInfo.id + ', ' + aInfo.displayName);
                                authorizeButton.value = aInfo.displayName + " +" + aInfo.id;
                            }
                        });
                    });
                }

            }
        }

        function log(msg) {
            if (console) console.log(msg);
        }
    </script>

    <script src="https://apis.google.com/js/client.js?onload=gapiIsReady" type="text/javascript"></script>

</head>

<body>
    <h1>Test3a</h1>
    <p>This pages demonstrates a problem I am having using gapi.client.request with gapi.auth.</p>

    <input type="button" id="query-button" value="Query"><br>
    <input type="button" id="startOAuth-button" value="Start OAuth"><br>
    <input type="button" id="authorize-button" value="Authorize"><br>

    <p>Steps...</p>
    <p>1. Click "Query" to run a gapi.client.request Google Fusion Table SQL-get query returning
    a count of rows.  This will run successfully until OAuth is used in steps 2 and 3.</p>
    <p>2. Click "Start OAuth" to run an immediate:true authorization against Google+.  If you
    are currently signed into Google+, your user name will be displayed in the third button.</p>
    <p>3. If your Google+ user name is not displayed in the third button, press it ("Authorize")
    and sign into Google+.</p>
    <p>4. Click the "Query" button again.  
    The query will run without error when pressed within about 30 seconds of OAuth authorization.
    After that, the query fails with a 403 error.  WHY?</p>
</body>

</html>

请注意,我打算使用 Google+ 登录来跟踪用户的页面使用细节,而不是启用 Fusion Tables 查询。

我是 OAuth 和 gapi.client.request 的新手,所以这对我来说可能是一个简单的误解。
感谢您的任何见解。

4

1 回答 1

0

我没有给你所有的答案,但我认为这里有一些可能会有所帮助:

  1. 在您让用户使用 G+ 登录之前,gapi.client.request 对象会为每个请求添加一个“key=yourAPIKey”参数。

  2. 让用户使用 G+ 登录后,gapi.client.request 对象为每个请求添加一个“key=yourAPIKey”参数,随每个请求发送一个“Authorization: Bearer ya.xxxxxx”标头,表示访问已登录用户的令牌。

我认为您看到 403 的原因是因为访问令牌正在发送到服务器,但该令牌不包括授权访问 FusionTables 数据的范围。当没有发送访问令牌时 - 不执行此验证。

如果您确实想访问用户拥有的数据,那么您需要通过在 gapi.auth.authorize 调用中包含适当的范围(例如“ https://www. googleapis.com/auth/fusiontables ”)。

但是,由于我不认为您正在尝试代表特定用户访问数据,所以我认为您真正想要做的是在您调用 Fusion Table API 期间完全阻止发送“授权”标头。

我看不到一种简单的方法来阻止 gapi.client.request 库在用户登录时发送该标头,因此另一种解决方案可能是创建一个不使用 gapi.client.request 库的 HTTP 对象(例如直接使用 XMLHttpRequest) - 并在每个请求中手动包含“key=yourAPIKey”。

(我无法解释的是为什么你会看到 30 秒的不同行为......)

于 2013-07-11T06:25:19.540 回答