如何获取使用JavaScript通过Twitter API捕获的Twitter t.co链接的目标网址。
e.g。 http://t.co/NJwI2ugt
答案 0 :(得分:2)
我在这里做了一个小提琴:http://jsfiddle.net/duotrigesimal/XB8Uf/
它向LongURL(http://longurl.org/api#expand-url)的api发出请求以获取扩展的URL。
我也在这个例子中使用jQuery,但是你可以在没有需要的情况下使它工作。
var tests = [
'http://t.co/NJwI2ugt',
'http://www.google.com' //nothing should happen
];
for(i in tests) {
var data = {
url: tests[i],
format: 'json'
};
$.ajax({
dataType: 'jsonp',
url: 'http://api.longurl.org/v2/expand',
data: data,
success: function(response) {
$('#output').append(response['long-url']+'<br>');
}
});
}