我使用Ionic 3构建了体育博彩应用程序。 我将向提示添加评论功能。 我发送了使用以下api添加用户评论的请求。
https://bettinggods.com/api/add_comment/?api_call=true&cookie=Taras Bilous|1543249541|q3UtFX6qo0NhArt1GJ7NSIq34wzmHqw2J4LjtWEN0rW|f08e0f93e712d3426c0d3edace54bc66b08d42f8934ffe2c0fc597598e680b4f&post_id=54096&content=Fdsgyhgdd&parent=0
当我用Postman测试此api时没有问题。 但是我在应用程序上调用api时遇到401错误。 这是代码。
this.http.get("https://bettinggods.com/api/add_comment/?api_call=true&cookie=Taras Bilous|1543249541|q3UtFX6qo0NhArt1GJ7NSIq34wzmHqw2J4LjtWEN0rW|f08e0f93e712d3426c0d3edace54bc66b08d42f8934ffe2c0fc597598e680b4f&post_id=54096&content=Fdsgyhgdd&parent=0").subscribe(
(res) => {
console.log(res);
this.loading.dismiss();
this.showSuccess('Success', 'Your comment has been added successfully.');
}, (err) => {
this.loading.dismiss();
if (err.error) {
this.showError('Error', err.error.error);
} else {
this.showError('Error', 'Unfortunately, Your comment has not been added.');
}
this.comment.content = "";
});
我正在寻找您的答复。 谢谢。