Google returns the following claimed id for a particular user for my realm http://localhost:59674:

https://www.google.com/accounts/o8/id?id=AItOawlikYtWr5FCO2mzN1ydORX5S4NFZg1H2Y4

Do I need the whole string to uniquely identify a Google user? Is it sufficient if I just take the id portion of the query string, ie all after "?id="?

My next question is: what is the range of possible characters after "?id="? Will it always be [A-Za-z0-9]?

Thanks.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Yes, you need to store the entire claimed identifier for each user (be sure that your user table is case sensitive for this column!).

The set of allowed characters in this URL is any unreserved URL character, so it can absolutely be more than just alphanumerics. This means, I believe, unicode characters may also appear in the URL. Although the browser typically displays these characters as escaped for security reasons, the raw URL itself needn't escape these characters.

link|improve this answer
Thanks. The next question naturally would be how long can the OpenId be? – Old Geezer Feb 1 at 14:27
The max length is sadly undocumented. But the max URL length that folks can generally assume will actually work is around 2K (slightly less). So if you allow for up to 2000 characters you're definitely fine. Anything less than that and you should at least check that it's long enough for Google and Yahoo's anonymous identifiers. – Andrew Arnott Feb 2 at 3:44
feedback

Your Answer

 
or
required, but never shown

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