gpt4 book ai didi

node.js - 使用 nodejs 创建 OAuth2 服务器

转载 作者:IT老高 更新时间:2023-10-28 23:14:10 25 4
gpt4 key购买 nike

我其实是在研究 REST API 安全,看来很多人都在使用 OAuth2 和 OpenId 协议(protocol)来管理身份验证。

我尝试使用以下方式实现两个 OAuth2 服务器:

对于第一个解决方案,运行示例工作正常,但我需要做一些无状态的(在示例中作者使用 session ...)

你能帮我创建一个最简单的 oauth2 服务器,或者默认向我解释这些库的全部功能吗?

感谢提前

最佳答案

我使用 "oauth2-server": "^3.0.0-b2"

实现
var express = require('express');
var oauthServer = require('oauth2-server');
var Request = oauthServer.Request;
var Response = oauthServer.Response;
var authenticate = require('./components/oauth/authenticate')

var app = express();

app.use(bodyParser.urlencoded({ extended: true }));

app.use(bodyParser.json());

// https://github.com/manjeshpv/node-oauth2-server-implementation/blob/master/components/oauth/models.js
var oauth = new oauthServer({
model: require('./models.js')
});

app.all('/oauth/token', function(req,res,next){
var request = new Request(req);
var response = new Response(res);

oauth
.token(request,response)
.then(function(token) {
// Todo: remove unnecessary values in response
return res.json(token)
}).catch(function(err){
return res.status( 500).json(err)
})
});

app.post('/authorise', function(req, res){
var request = new Request(req);
var response = new Response(res);

return oauth.authorize(request, response).then(function(success) {
res.json(success)
}).catch(function(err){
res.status(err.code || 500).json(err)
})
});

app.get('/secure', authenticate(), function(req,res){
res.json({message: 'Secure data'})
});

app.get('/me', authenticate(), function(req,res){
res.json({
me: req.user,
messsage: 'Authorization success, Without Scopes, Try accessing /profile with `profile` scope',
description: 'Try postman https://www.getpostman.com/collections/37afd82600127fbeef28',
more: 'pass `profile` scope while Authorize'
})
});

app.get('/profile', authenticate({scope:'profile'}), function(req,res){
res.json({
profile: req.user
})
});

app.listen(3000);

要模拟,请使用 Postman:https://www.getpostman.com/collections/37afd82600127fbeef28

MySQL/PostgreSQL/MSSQL 兼容:https://github.com/manjeshpv/node-oauth2-server-implementation/blob/master/components/oauth/models.js

MySQL DDL:https://github.com/manjeshpv/node-oauth2-server-implementation/blob/master/sql/oauth_demo.sql

Mongo 转储:https://github.com/manjeshpv/node-oauth2-server-implementation/tree/master/mongo-dump

请注意,他们有一个问题,需要将 validateScope 函数替换为:

function validateScope(user, client) {
return user.scope === client.scope
}

关于node.js - 使用 nodejs 创建 OAuth2 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25991527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com