1

我整个星期都在工作以使身份验证正常工作。我已经得到它的工作

  • Ember-CLI
  • Ember-Simple-Auth
  • 鸟居
    • google-oauth2 提供商

但是,我已经证明无法从谷歌获取用户信息。我已经尝试按照他们的文档中的说明创建一个 torii-adapter,但它似乎没有被调用

// app/torii-adapters/application.js
export default Ember.Object.extend({
  open: function(authorization){
    console.log('authorization from adapter', authorization);
  }
});

我已经用尽了我的 google-foo,正在寻求您的帮助。这是一个很好的授权库组合,但是这种情况下缺少文档,当我弄清楚时,我一定会回馈。

谢谢

4

1 回答 1

4

我遇到的问题是 Torii 的默认 google-oauth2 提供程序不会为您访问此信息,它也使用代码工作流程而不是 google+ API 所需的令牌工作流程

为了解决这个问题,我编写了一个自定义提供程序,它使用对 G+ API 的 jquery GET 请求,然后返回 userName 和 userEmail 以在内容下的会话中访问它。

我写了一个完整的教程,详细说明了使用谷歌授权一个 ember 应用程序从这里开始到结束

//app/torii-providers/google-token.js
import {configurable} from 'torii/configuration';
import Oauth2Bearer from 'torii/providers/oauth2-bearer';

var GoogleToken = Oauth2Bearer.extend({
  name: 'google-token',
  baseUrl: 'https://accounts.google.com/o/oauth2/auth',

  // additional params that this provider requires
  requiredUrlParams: ['state'],
  optionalUrlParams: ['scope', 'request_visible_actions', 'access_type'],

  requestVisibleActions: configurable('requestVisibleActions', ''),

  accessType: configurable('accessType', ''),

  responseParams: ['token'],

  scope: configurable('scope', 'email'),

  state: configurable('state', 'STATE'),

  redirectUri: configurable('redirectUri',
                            'http://localhost:8000/oauth2callback'),

  open: function(){
      var name        = this.get('name'),
          url         = this.buildUrl(),
          redirectUri = this.get('redirectUri'),
          responseParams = this.get('responseParams');

      var client_id = this.get('client_id');

      return this.get('popup').open(url, responseParams).then(function(authData){
        var missingResponseParams = [];

        responseParams.forEach(function(param){
          if (authData[param] === undefined) {
            missingResponseParams.push(param);
          }
        });

        if (missingResponseParams.length){
          throw "The response from the provider is missing " +
                "these required response params: " + responseParams.join(', ');
        }

        return $.get("https://www.googleapis.com/plus/v1/people/me", {access_token: authData.token}).then(function(user){
          return {
            userName: user.displayName,
            userEmail: user.emails[0].value,
            provider: name,
            redirectUri: redirectUri
          };
        });
      });
    }
});

export default GoogleToken;
于 2014-12-20T20:03:37.543 回答