这是我在NodeJs应用程序中的功能,我用它在openfire中创建用户。
var createUser = function(objToSave, callback) {
const options = {
method: 'POST',
uri: url.resolve(Config.APP_CONSTANTS.CHAT_SERVER.DOMAIN_NAME, '/plugins/restapi/v1/users'),
headers: {
'User-Agent': 'Request-Promise',
'Authorization': Config.APP_CONSTANTS.CHAT_SERVER.SECRET_KEY,
'Accept': 'application/json',
'Content-Type': 'application/json',
},
data: objToSave
}
request(options)
.then(function(response) {
callback(null, response);
})
.catch(function(error) {
// Deal with the error
console.log(error);
callback(error);
});
};

objToSave 是一个包含用户名和密码的json对象。
{
"Username": "gabbar",
"Password": "gabbar@123"
}
当我运行此功能时,我收到以下错误..
{
"statusCode": 400,
"error": "Bad Request"
}
我正确配置了我的密钥,域名是 localhost:// 9090 ,任何人都可以告诉我我做错了什么吗?提前谢谢。
答案 0 :(得分:0)
我认为您提供的选项在发送之前需要JSON.stringify
个对象
修改后的选项如下
const options = {
method: 'POST',
uri: url.resolve(Config.APP_CONSTANTS.CHAT_SERVER.DOMAIN_NAME, '/plugins/restapi/v1/users'),
headers: {
'User-Agent': 'Request-Promise',
'Authorization': Config.APP_CONSTANTS.CHAT_SERVER.SECRET_KEY,
'Accept': 'application/json',
'Content-Type': 'application/json',
},
data: JSON.stringify(objToSave)
}
答案 1 :(得分:0)
我发现问题出在请求承诺上。它没有以所需格式正确发送数据。所以我现在使用不同的模块 minimal-request-promise 。它对我来说就像魅力一样。使用它之后,我的代码看起来像这样。
var requestPromise = require('minimal-request-promise');
var createUser = function(objToSave, callback) {
const options = {
headers: {
'Authorization': Config.APP_CONSTANTS.CHAT_SERVER.SECRET_KEY,
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(objToSave)
};
requestPromise.post('http://localhost:9090/plugins/restapi/v1/users', options)
.then(function(response) {
callback(null, response);
})
.catch(function(error) {
// Deal with the error
console.log(options);
console.log(error);
callback(error);
});
};