When you are using openid login or facebook login in your case, you always get at minimum the email of the user, so you could use that as your username, because new users in facebook can't have username, but they have a user id which is a messy number for example in this case:
{
"id": "10525827",
"name": "xxxxx",
"first_name": "first",
"last_name": "last",
"link": "https://www.facebook.com/username",
"username": "username",
"gender": "male",
"locale": "es_LA"
}
So you the id is always unique, and the usernameas well.