Javascript:使用dribbble api禁止错误

时间:2012-08-23 04:27:13

标签: javascript jquery api

不确定最近是什么,试图拉出一个简单的图像

HTML

 <div></div>

JS

 $.getJSON("http://api.dribbble.com/shots/popular?callback=?", function(data) {
        $('div').append('<img src="+data.shots[0].image_url+" />');
    });

在控制台中它将拉动链接查找,但是当我尝试在页面上显示图像时,它会给我一个403.不确定我缺少什么。

3 个答案:

答案 0 :(得分:1)

你错过了单引号。

$('div').append('<img src="' + data.shots[0].image_url + '" />');

答案 1 :(得分:0)

试试这个:

$.getJSON("http://api.dribbble.com/shots/popular?callback=?", function(data) {
  $('div').append('<img src="' + data.shots[0].image_url + '" />');
});

答案 2 :(得分:0)

如果您愿意,可以使用这个简单的Javascript Dribbble API库:Dribbble.js

您可以在此处查看示例:Dribbble API Example

简单易用:

// get the most popular shots 
Dribbble.list( 'popular', function( response ){ 
   // write your code here 
});

谢谢,祝你好运!