FusionTables用的oauth2专用表(FusionTables private table

2019-06-25 10:34发布

通过良好的PIC 蒂姆·罗森伯格 ,显示究竟是如何的oauth2工作的:

我有点懒,甚至开始寻找这个2 的文件和测试 ,所以我搜索到easyest方式

1.get令牌

2.access与该令牌

与帮助GWT-的oauth2

把它放入的index.php头: <script type="text/javascript" src="gwt-oauth2.js"></script>

而这身

<script type="text/javascript">
(function() {
var GOOGLE_AUTH_URL = "https://accounts.google.com/o/oauth2/auth";
var GOOGLE_CLIENT_ID = "CLIENT_ID";
//var PLUS_ME_SCOPE = "https://www.googleapis.com/auth/plus.me";
//var FusionTable_SCOPE = "https://www.googleapis.com/auth/fusiontables";       
var button = document.createElement("button");
button.innerText = "Authenticate with Google";
button.onclick = function() {

var req = {
    'authUrl' : GOOGLE_AUTH_URL,
    'clientId' : GOOGLE_CLIENT_ID,
    'scopes': ['https://www.googleapis.com/auth/plus.me',
               'https://www.googleapis.com/auth/fusiontables'
              ],
};

oauth2.login(req, function(token) {
    alert('Got an OAuth token:\n'+ token +'\n'+ 'Token expires in '+ oauth2.expiresIn(req) +' ms\n');
  }, function(error) {
    alert("Error:\n" + error);
  });
};

var dv = document.getElementById('admin-content');
dv.appendChild(button);
var clearTokens = document.createElement('button');
clearTokens.innerText = 'Clear all tokens'
clearTokens.onclick = oauth2.clearAllTokens;
dv.appendChild(clearTokens);
})();
</script>

好,

现在你可以看到没有错误在新窗口中的连接和重定向到oauthWindow.html。 GET参数现在显示您access_token token_type expires_in 。 检查的access_token HERE

正如你所看到工作的access_token很大,但

你仍然不明白的是从第一个警报:

oauth2.login(req, function(token) {
  alert('Got an OAuth token:\n' + token + '\n'
  + 'Token expires in ' + oauth2.expiresIn(req) + ' ms\n');
}, function(error) {
  alert("Error:\n" + error);
});

第二警报工作正常,当您尝试AUTH。 如果再oauthWindow.html还是打开它会显示错误警报(所以它的工作!)现在,让我们这个小的代码添加到oauthWindow.html

<!DOCTYPE html>
<html>
  <head>
    <script type="text/javascript">
      if (window.opener && window.opener.oauth2 && window.opener.oauth2.__doLogin) {
        window.opener.oauth2.__doLogin(location.hash);
      } else {
        document.body.innerText = "Your browser seems to be stopping this window from communicating with the main window.";
      }
    </script>
  </head>
  <body></body>
</html>

完善!

现在,如果你想与私人表,工作的所有你需要的是一个增加的access_token到URL。

谢谢你给我回答我自己的原因吧!

Answer 1:

将此放入oauthWindow.html文件

<!DOCTYPE html>
<html>
  <head>
    <script type="text/javascript">
      if (window.opener && window.opener.oauth2 && window.opener.oauth2.__doLogin) {
        window.opener.oauth2.__doLogin(location.hash);
      } else {
        document.body.innerText = "Your browser seems to be stopping this window from communicating with the main window.";
      }
    </script>
  </head>
  <body></body>
</html>


文章来源: FusionTables private table with OAUTH2