how do you convert full(long) urls into short urls(like tinyurls) in C# for twitter? I imagine this is probably very simple with the right api. Does anyone know of a good api for doing this?

link|improve this question

possible duplicate of Using tinyurl.com in a .Net application ... possible? – ChrisF Jul 20 '11 at 19:22
feedback

2 Answers

up vote 1 down vote accepted

I just published an article about doing this from bit.ly in a C# application.

Note that bit.ly requires a free login key that you will need in order for the code to work.

link|improve this answer
Nice article. This works perfect, Thanks. – loyalpenguin Mar 4 '11 at 17:10
feedback

You just need to make a request to http://tinyurl.com/api-create.php?url={url} substituting the {url} with the url you want and read the content of the page.

Here's an example:

public string ShortUrl(string url)
    {
        WebRequest request = WebRequest.Create(string.Format("http://tinyurl.com/api-create.php?url={0}", url));
        Stream stream = request.GetResponse().GetResponseStream();
        StreamReader reader = new StreamReader(stream);
        return reader.ReadLine();
    }
link|improve this answer
Yeah I tried this, but a proper API is required for my project. This is almost like a work around. I would rather first use, if possible an api built for this, then resort to other methods if necessary. – loyalpenguin Mar 4 '11 at 17:14
feedback

Your Answer

 
or
required, but never shown

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