我想将cosmos-auth与Idm GE集成。 node.js应用程序的配置是:
{
"host": "192.168.4.180",
"port": 13000,
"private_key_file": "key.pem",
"certificate_file": "cert.pem",
"idm": {
"host": "192.168.4.33",
"port": "443",
"path": "/oauth2/token"
},
"cosmos_app": {
"client_id": "0434fdf60897479588c3c31cfc957b6d",
"client_secret": "a7c3540aa5de4de3a0b1c52a606b82df"
},
"log": {
"file_name": "/var/log/cosmos/cosmos-auth/cosmos-auth.log",
"date_pattern": ".dd-MM-yyyy"
}
}
当我直接向IDM GE发送HTTP POST请求到url
时https://192.168.4.33:443/oauth2/token
使用所需参数我得到了正确的结果:
{
access_token: "LyZT5DRGSn0F8IKqYU8EmRFTLo1iPJ"
token_type: "Bearer"
expires_in: 3600
refresh_token: "XiyfKCHrIVyludabjaCyGqVsTkx8Sf"
}
但是当我卷曲cosmos-auth node.js应用程序时
curl -X POST "https://192.168.4.180:13000/cosmos-auth/v1/token" -H
"Content-Type: application/x-www-form-urlencoded" -d
"grant_type=password&username=idm&password=idm" -k
我得到下一个结果:
{"statusCode":500,"error":"Internal Server Error","message":"An internal server error occurred"}
有没有人遇到过类似的东西? 可能是什么问题?
答案 0 :(得分:0)
我犯的错误是使用未签名的证书。我有多笨拙。 因此,要么签署证书,要么在options对象中插入其他元素(rejectUnauthorized:false)
var options = {
host : host,
port : port,
path : path,
method : method,
headers: headers,
rejectUnauthorized: false
};
或在文件插入的开头:
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
当然,在我们使用完全签名的证书之前,这只是暂时的解决方案。 无论如何错误处理和cosmos-auth node.js应用程序中的日志应该显示更多。