There are lot of SO gadgets out there. But we have to enter the userid (number) instead of username. It will be good if we have an API to get userid from username.

Example gadget below from an SO user.

  1. http://insomniacgeek.com/code/windows-gadget/a-stack-overflow-sidebar-gadget/
link|improve this question

67% accept rate
4  
not possible, as user names are not unique – Jeff Atwood Jul 18 '09 at 13:29
Funny for those who say it's not possible. It only took me about 45 minutes to implement. – Joel Coehoorn Feb 3 '10 at 3:19
feedback

5 Answers

I think it's not possible. I could change my username to Shoban and the system wouldn't be able to choose between my id and your id. Username is not unique, id is.

link|improve this answer
feedback

Here you go:

http://stackql.net/default.aspx?qid=41601

You can also pass in a url-encoded query and get back csv data, like this:

http://stackql.net/quick.ashx?q=select%20id%20from%20users%20where%20displayname%3D'joel%20coehoorn'

And a C# class to get the results (untested/typed directly into edit window):

public static class StackQL
{
    private const string baseUri = "http://stackql.net/quick.ashx?q=";

    public static IEnumerable<int> UserIDsFromDisplayName(string DisplayName)
    {
       // could also order by id, or some other attribute
       string baseQuery = "SELECT id FROM Users WHERE DisplayName='{0}' ORDER BY Reputation DESC";

       foreach (string id in RawQuery(string.Format(baseQuery, DisplayName.Replace("'", "''"))).Split('\n'))
       {
           yield return int.Parse(id);
       }
    }

    // data returned in a csv string
    public static string RawQuery(string query)
    {
       using (var wc = new WebClient())
       {
           return wc.DownloadString(baseUri + HttpServerUtility.UrlEncode(query));
       }
    }
}
link|improve this answer
feedback

Go to the Users Search, type in the username you want, and get the id from its URL. Simple as pie :)

link|improve this answer
feedback

There has been a discussion around the API for a while now here. Thus far there is not been any confirmation of this happening?

link|improve this answer
feedback

Actually, since username can be duplicated, it is NOT simple as pie. In fact I think it takes multiple calls in all except a few instances as you try to triangulate the actual user. If you have a post from the user then you have a chance.

I have asked for the actual user ID to be embedded in the search feed, which would make it much simplier to get from question to person.

http://meta.stackoverflow.com/questions/34374/embedding-userid-in-questions-feeds-api

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged