我正在使用nativescript和wordpress构建移动应用程序。我想使用wp-rest-api更新wordpress上的帖子。我正在关注指南here。我的代码如下。我想我缺少登录合成,请帮忙
exports.signUp = function(args) {
fetch("http://kcdm.my.id/wp-json/wp/v2/sales", {
method: "POST",
body: JSON.stringify({username: "sa-kcdm", firstname: "aaa", lastname: "bbb"}),
headers: {
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"
}
})
.then(function(response) {
alert({title: "POST Response", message: JSON.stringify(response), okButtonText: "Close"});
}, function(error) {
console.log(JSON.stringify(error));
})
}