如何用jQuery取消t.co链接?

时间:2013-02-07 19:56:54

标签: javascript jquery html twitter

我有一个打印 t.co 链接的推特插件。如何用jQuery“解开”它们?我有可以使用的图书馆吗?

我做了一些搜索,但找不到任何东西。也许我正在寻找错误的东西......

1 个答案:

答案 0 :(得分:5)

我在这里做了一个小提琴:http://jsfiddle.net/duotrigesimal/XB8Uf/

它向LongURL(http://longurl.org/api#expand-url)的api发出请求以获取扩展的URL。

var tests = [
    'http://t.co/NJwI2ugt', 
    'http://www.google.com' //nothing should happen
];

var expander = {
    expand: function (url, callback) {
        $.ajax({
            dataType: 'jsonp',
            url: 'http://api.longurl.org/v2/expand',
            data: {
                url: url,
                format: 'json'
            },
            success: function(response) {
                callback(response);
            }
        });
    }
};

for(i in tests) {

    expander.expand( tests[i], function(response) {
        $('#output').append(response['long-url']+'<br>');
        console.dir(response);
    });

}