我正在使用Ghost API从其他网站获取内容。我使用下面提到的代码,它给了我一个403 Forbidden错误。
function onSuccess(data) {
var $result = $('#blog-posts');
$.each(data.posts, function (i, post) {
$result.append(
'<li>' + post.title + '</li>'
);
});
}
jQuery(document).ready(function () {
jQuery.get(
ghost.url.api('posts', {
limit: '3',
include: 'tags',
order: 'count.posts DESC'
})
).done(onSuccess);
});