1

hapijs に oauth2orize を実装しました。しかし、API を呼び出しても何も起こりません。関数は oauth2orize モジュールの code.js ファイル内に入り、その間でハングします。hapjs で oauth2orize を実装する方法を教えてください。hapi-oauth2orize も、移民および hapi-oauth2orize プラグインがオプション エラーをスローするため機能しません。

const Hapi = require('hapi');
const server = new Hapi.Server();
const oauth2orize = require('oauth2orize');
var oauth = oauth2orize.createServer();

server.connection({ 
    host: 'localhost', 
    port: 8000 
});

    server.register([{
        register: require('hapi-mongodb'),
        options: dbOpts
    }], function (err) {
        if (err) {
            console.error(err);
            throw err;
        }
        server.start();

        server.route([
                    {
                      method: 'GET',
                      path: '/oauth/authorizegrant',
                      config: {
                        auth: false,
                        handler: function(request, reply) {
                            var clientId = request.query.client_id,
                                redirectUrl = request.query.redirect_uri,
                                resType = request.query.response_type,
                                state = request.query.state;
                            oauth.grant(oauth2orize.grant.code(function(clientId,redirectUrl,resType,state,callback) {
                              // Create a new authorization code
                                  console.log('client', client);
                                  var db = request.server.plugins['hapi-mongodb'].db;
                                  var code = new Code({
                                    value: uid(16),
                                    clientId: client._id,
                                    redirectUri: redirectUri,
                                    userId: user._id
                                  });

                              // Save the auth code and check for errors
                            db.collection('codes').insert(code, function(err) {
                                if (err) { console.log('err*********', err); return callback(err); }

                                callback(null, code.value);
                              });
                            }));

                        }
                      }
                    },
                ]);
    });
4

1 に答える 1

0

oauth.grant 関数に渡されるパラメータを変更する必要があります。コールバックを削除して、hapi の応答関数に置き換える必要があります。簡単なスニペットは次のようになります

if (err) {
    return reply(err);
}
return reply(code.value);

これは、hapi と oauth2orize の間のインターフェイスとして最適な方法であるためプラグイン リポジトリに問題を報告します。

于 2016-06-21T12:16:58.100 に答える