如何配置 OAuth 服务器发送配置文件信息?

How to configure OAuth Server to send profile information?

我在端口 8080 上有自定义 OAuth 提供程序 (koa2-oauth-server) 运行。

我有一个客户端应用程序,它使用 Passport 来验证使用 OAuth2Strategy 的请求。

以下代码为 OAuth 配置通行证

passport.use(
    new OAuth2Strategy({
        tokenURL: 'http://localhost:8080/oauth/token',
        authorizationURL: 'http://localhost:8080/oauth/authorize',
        clientID: 'xxx',
        clientSecret: 'xxx',
        callbackURL: 'http://localhost:3000/oauth/redirect'
    }, (accessToken, refreshToken, profile, done) => {
        console.log(profile); // This is always empty object
        done(null, profile);
    })
);

下面的代码生成访问令牌

router.post('/oauth/token', oauth.token(),
    (ctx,next) => {
        // TODO: Profile information not being sent
        const userid = ctx.state.oauth.token.user.id;
        ctx.body = db.users.find(function(aUser){
            return aUser.id == userid;
        })
    }
);

我想在护照回调函数中接收个人资料信息。 我尝试发送第二个代码块中显示的用户个人资料信息,但没有成功。

我尝试阅读 koa2-oauth-servernode-oauth2-server 的代码来弄清楚如何发送个人资料信息,但没有成功。

我应该如何配置 OAuth 提供程序以将配置文件信息发送回客户端?

我检查了 passport-oauth2 的来源,发现这个函数是罪魁祸首

/**
 * Retrieve user profile from service provider.
 *
 * OAuth 2.0-based authentication strategies can overrride this function in
 * order to load the user's profile from the service provider.  This assists
 * applications (and users of those applications) in the initial registration
 * process by automatically submitting required information.
 *
 * @param {String} accessToken
 * @param {Function} done
 * @api protected
 */
OAuth2Strategy.prototype.userProfile = function(accessToken, done) {
  return done(null, {});
};

我在 js 文件中重载了函数以满足我的要求。