我在使用带有rest api的快速框架的Nodejs上工作。
我也使用 openid-connect 进行登录。这个模块最终将返回access_token(将数据插入表access_token,refresh_token),该令牌我将分享到前端和移动应用程序或其他什么。现在我正在尝试实施Gmail / FB,我知道他们将为各自的Gamil.FB提供令牌。 在我的情况下,我需要如何插入令牌和其他东西。
var oidc_opt = {
login_url : '/auth/login',
consent_url : '/auth/consent',
scopes : {
user : 'Access to User Information',
fetchit : 'Access to XXX Information'
},
app : app
};
var oidc = require('openid-connect').oidc(oidc_opt);
任何人都可以向approch提出一些想法。