Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use fb login and the user's facebook username on my website. However, I need the username to be non-blank.

Is it safe to assume that every facebook user has a username (that I can get through the graph API), and no user has a blank username?

share|improve this question

2 Answers

No. You should not assume that everyone has defined a username...

There are still some users who have not yet defined their usernames. A much better solution would be to require your users to login using their email address as a username. This will always be unique (as email addresses are).

The email address permission can be request from your users and after that you'll be able to access it through -

https://graph.facebook.com/user_id?fields=email
share|improve this answer
I think for every user that has not set a username for themselves, Facebook has nowadays given one of their own making. – CBroe Feb 2 at 17:20
@cbr - When specifically requesting the username of a user that has not set a username, only the id parameter is returned - as is the same behavior for any other field you don't have access to. The id can be used the same as a username though with regard to the users profile page - facebook.com/user_id will point to that users profile. – Lix Feb 2 at 19:13

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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