jribbble没有返回结果

时间:2015-10-21 19:20:57

标签: javascript jquery html

我在我的页面上运行jribbble以从我的运球页面带回来。它已经工作了一段时间。但是,最近几天一直在控制台中显示此错误:

  

无法加载资源:服务器响应状态为404   (未找到)

网站:http://atlantadesign.ninja/

JS:

0 - 20 000 000: Machine 1 scope
21 000 000 - 40 000 000: Machine 2 scope
....
1 000 000 000 - 1 020 000 000: Machine ~100 scope

1 个答案:

答案 0 :(得分:1)

Dribbble现在要求您注册一个应用程序以获取API密钥。

查看此示例:http://codepen.io/tylergaw/pen/NqpzvE

// NOTE: Don't use this token, replace it with your own client access token.
$.jribbble.setToken('f688ac519289f19ce5cebc1383c15ad5c02bd58205cd83c86cbb0ce09170c1b4');

$.jribbble.users('tylergaw').shots({per_page: 36}).then(function(shots) {
  var html = [];

  shots.forEach(function(shot) {
    html.push('<li class="shots--shot">');
    html.push('<a href="' + shot.html_url + '" target="_blank">');
    html.push('<img src="' + shot.images.normal + '">');
    html.push('</a></li>');
  });

  $('.shots').html(html.join(''));
});