已在本地wordpress安装上运行以下代码。我已经为管理员用户创建了一个应用程序密码,但仍在获取未经授权的401。我错过了什么?
这是密码
jQuery.ajax({
type: "POST",
dataType: "json",
url: \'http://the-lead-magnet-company.local/wp-json/wp/v2/posts\',
data: JSON.stringify({
title: me.title(),
content: \'Here is some content\',
status: \'published\'
}),
beforeSend: function ( xhr ) {
xhr.setRequestHeader(\'Authorization\', \'Basic admin:DqfX r0YT hQE5 lsgu 2Y7d PJv5\');
},
success: function (data) {
alert("posted");
},
error: function (error) {
alert("FAILD:" + error);
}
});