有人可以帮我这个jQuery bit.ly URL缩短器吗?
代码如下:
function shortenUrl(urlMatch)
{
var urlMatch = urlMatch
var username="myusername";
var key = 'R_897b82b73568ea74fffbafa5a7b846d';
$.ajax({
url:"http://api.bit.ly/v3/shorten",
data:{longUrl:urlMatch,apiKey:key,login:username},
dataType:"jsonp",
success:function(v)
{
var shortUrl=v.data.url;
return shortUrl;
}
});
}
$('button').click(function(){
var urlMatch = $(this).val();
var newUrl = shortenUrl(urlMatch);
$('#menu').html(newUrl);
});
每当我运行脚本时,它都会在控制台中返回以下代码:
jsonp1304728172115({ data : [ ] , "status_code" : 500, "status_txt": "missing_arg_uri"})
最佳答案
你有data:{longUrl:urlMatch,apiKey:key,login:username},
如果jsonp类似于json,那么您的数据参数格式不正确:data:"{'longUrl':" + urlMatch + ",'apiKey':" + key + ",'login':" + username + "}",
上面的代码未经测试,但应该类似。