我正在使用OpenFire Rest APi v 1.2.3向其中添加新成员。这是我发送请求的代码。
var par ={
username:$scope.currentItem.tel1,
password:buildKey($scope.currentItem.password),
name:$scope.currentItem.name,
email: $scope.currentItem.email
};
$http({
method: "POST",
url: baseCfg.xmpp_server + "users",
headers: {
"Content-Type": "application/json",
"Authorization":"Basic YWRtaW46IVFBWjFxYXo="
},
data:JSON.stringify(par)
}).then(function () {
console.log("done");
}, function () {
console.log("error");
});
但我得到了这样的答复:
选项403禁止
并且在请求标头中没有标头和参数。
答案 0 :(得分:0)
这是我的愚蠢错误巫婆我不能关掉我的restapi。 我必须走这条道路才能启用它:
OpenFire管理面板>服务器>服务器设置>并选中启用