我正在尝试使用WP REST API调用Wordpress安装中的帖子。我不断地得到一个错误作为回报,我不知道为什么。我需要验证吗?一个网站说我不需要对GET请求进行身份验证。WP REST API:版本2.0-beta9。以下是我使用的代码:
$(document).ready(function () {
setTimeout(GetPosts, 2000);
function GetPosts() {
$.ajax({
url: \'http://easterly.haamap.com/wp-json/posts\',
data: {
filter: {
\'posts_per_page\': 1
}
},
dataType: \'json\',
type: \'GET\',
success: function(data) {
console.log(data);
},
error: function() {
console.log(\'error\');
}
});
}
})