Express session 如何存储 OAuth 实例之类的东西?
我怎样才能用快递做到这一点?
req.session.oa = new OAuth(....);
// and in another request
req.session.oa.getOAuthToken(...);
session存储在redis中。
how can I do this in express?
req.session.oa = new OAuth(....);
// and in another request
req.session.oa.getOAuthToken(...);
the session is store in redis.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会将
oauth_token
和oauth_token_secret
存储在会话中,并将 OAuth 对象放在app.settings
中。所以你会
在路线中
I would store the
oauth_token
andoauth_token_secret
in the session and have the OAuth object be inapp.settings
.So you would have
And then in the routes