{nativescript} + {wordpress}:使用wp-rest-api插入帖子

时间:2016-10-09 01:26:32

标签: wordpress nativescript

我正在使用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));
        })
}

error log on nativescript

0 个答案:

没有答案