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 had a look on the facebook graph api. facebook api user object

I can't see what the maximum length that id would be. So that I can store it my database to uniquely identify a user on my game without them needing to register or sign up.

Also is an id unique for each facebook user? - Must be.

id is pulled from JSON "https://graph.facebook.com/me?fields=id&access_token=fromiPhoneApp

share|improve this question

1 Answer

up vote 1 down vote accepted

A 64-bit integer is sufficient. Or if you prefer to use a character field, 20 characters. Yes, the ID is unique for each user.

share|improve this answer
Cool Thanks. Just its says a string on the site, how come they have been so vague on the api? – Andrew Dec 2 '12 at 1:42
1  
Facebook documentation is notoriously bad unfortunately. – Michael Mior Dec 2 '12 at 1:46

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.