views:

42

answers:

1

Anyone have any ideas on how I could get a unique username (but not the email address) for each user. Ideally, I'd show them a page asking them to specify a username for the site, but the only way I can think of doing that is to show it to them after they've authenticated via G Accounts or OpenId. But, that requires another page, and what if they navigate away without entering anything?

+3  A: 

As you suggest, you need to ask them after they log in for the first time. Simply redirect them to that page until they fill it out.

Consider seriously, though, if you really need a username. A lot of sites demand one, but then use it for very little - and it's inconvenient for users to have to try and choose a unique one.

Nick Johnson
Hmm, could you expand on that last point? You mean like here on SO how I could change my first and last name to "Nick" and "Johnson" and I'd have the same display name as you? Ofc, we'd have different user ids so it wouldn't be a major issue.
Matt H
Yes, that's an example - the only unique ID here is the OpenID URL (and the numeric ID SO assigned me). Another example is sites where the username never comes in at all - like reservation sites, or wifi access points.
Nick Johnson