Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

I've got a twitter plugin that prints t.co links. How can I 'un-short' them with jQuery? Is there a library I could use?

I did some searches but I can't find anything. Maybe I'm searching on the wrong thing...

share|improve this question
1  
Crap.. I marked the wrong question as "duplicate". Sorry. – DarkCthulhu Feb 7 at 20:01
1  
@Plynx Did you really reference a possible duplicate AS a possible duplicate? – Ian Feb 7 at 20:04
@Ian it wasn't marked as a duplicate until 9 minutes ago, so no. At the least, we can all consolidate the questions on the one with the most helpful answers. – Plynx Feb 7 at 20:11
@Plynx Jeez I'm dumb. I saw the date on the actual question, and didn't bother to look at the hidden comment that showed it. – Ian Feb 7 at 20:15

marked as duplicate by DarkCthulhu, Dave Jarvis, Ian, Jan Dvorak, Patricia Feb 7 at 21:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

I made a fiddle here: http://jsfiddle.net/duotrigesimal/XB8Uf/

It makes a request to the api at LongURL (http://longurl.org/api#expand-url) to get the expanded url.

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>');
        }

    });

}

Edit by Kees - jsfiddle

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

expander.expand('http://t.co/GtuqEaZ0', function (dta) {
    console.log(dta);
});
share|improve this answer
wonderful... just wrapped it in a small object an it is really good to go! – Kees C. Bakker Feb 7 at 20:55

Not the answer you're looking for? Browse other questions tagged or ask your own question.