Ghost API - 没有获取内容

时间:2016-11-22 07:05:30

标签: javascript jquery wordpress ghost

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

0 个答案:

没有答案