I'm building a small Stack Overflow application, but to collect information from Stack Overflow about a user I need to know their UserID. I would like the user to be able to enter their display name/username and for the application to find their UserID. However, I understand that usernames are not unique, but would it be possible to find, through C#, all the user-ids of people with a username that I specify? Can you give me some sample code for this? This probably can be done somehow by screen-scraping the Users page, but I am not sure how to accomplish this sort of thing.

By the way, I do not want to use the data-dump to accomplish this. I would just like to somehow find this info out through the Users page, or something similar.

By the way, I posted a similar question on Meta Stack Overflow and was directed to post this here, as Stack Overflow is where it belongs!

link|improve this question

2  
I was about to suggest using the data dump, but you said you didn't want to use that for some unspecified reason. If you screen-scrape all the users on Stack Overflow, you will be banned. – Greg Hewgill Sep 19 '09 at 5:31
@Greg I will? Hmm... i don't want to screen-scrape all users, all I want to do is go through the Users page that says which users exist (the main Users page, not individual profile pages). This appears to be impossible. – Maxim Zaslavsky Sep 19 '09 at 5:59
feedback

3 Answers

up vote 6 down vote accepted

You can hijack the API that is used for the user search callback:

http://stackoverflow.com/users/filter/steve

That gives you a HTML snippet you can then scrape the data off. Note that you have to watch for searches with more than 35 results; that will give you more than one results page.

Edit: To answer the question how I found that: Just look at the source of the users page. Pretty far on top, you find the JavaScript function finished which is called when the user typed in their search term and then waited for 500ms. The Ajax call in that function goes to

"/users/filter/"+encodeURIComponent(txt.toLowerCase())

—the rest is pretty straightforward.

link|improve this answer
Thank you! This really helped! By the way, how'd you find this? – Maxim Zaslavsky Sep 19 '09 at 15:46
Wow, thank you so much! – Maxim Zaslavsky Sep 19 '09 at 18:49
feedback

I hate to say it, but you might want to ask for the user ID.

The problem isn't that there are a lot of users with potential duplicates, because if that were the case you could just cache the lookups. The problem is that any user can change their display name at any time, and so you can't really trust your cache.

The one thing you might do is build a web service from the latest community wiki dump, keep that up to date, and just make users know that if they change their user name they'll need to wait for the next month's data release for the new name to work.

link|improve this answer
Thank you! I'm just wondering, how do you change your user id? Is it related to associating a new OpenID with your account? I did that today, so I'm going to see if my id changed. – Maxim Zaslavsky Sep 19 '09 at 6:00
I'm guessing its randomly generated when your SO account is created in the database. changing openid wouldn't change it because one user can have multiple open ids. You would have to create a new user account to get a different ID – TJB Sep 19 '09 at 6:38
@TJB ya that's what I think, except that it's not random, the IDs are ascending #s in terms of who registers first. Jeff has id #1. Other team members have single-digit ids. It's ordered by time! The ore people that register, the higher the id that is assigned to you will be! – Maxim Zaslavsky Sep 19 '09 at 9:33
That was a typo. It should have said "DisplayName" – Joel Coehoorn Sep 19 '09 at 15:58
feedback

You will need to crawl through all users (http://stackoverflow.com/users/(0 to current)/) to answer that question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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