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.

Ok so I am developing my first facebook app, it is a very simple voting system everything is going to be on my db and in facebook using an iframe. I do not need to access user information or post to a wall for them or anything like that. I do however need to track users to prevent them from abusing the voting system. I am not sure but is there a unique identifier I can store from the user without requesting permissions? Ie. user token, or id or w.e.

I read the basic information portion of the facebook permissions but I can't understand whether that is data given without permissions request or after the permissions request prompt.

https://developers.facebook.com/docs/authentication/permissions/ (basic information section)

share|improve this question

2 Answers

When you set up your app like you said and users use your app you will be able to acces their id and some other stuff but the id is all that you need. So its the data without permission.

share|improve this answer
This answer is contradictory to my experiences and to other stackoverflow questions (e.g. stackoverflow.com/questions/10305427/…): Because of privacy issues it isn't possible to access a user identifier without any permissions. Or a I missing something? – lacco Sep 21 '12 at 7:33
yeah this doesn't work. There is no possible identifier that can be taken without permission from the user, the only data you are able to obtain is very basic and vague without it. – riotCode Dec 3 '12 at 17:12

I would recommend accesing their User ID and using that as a tracking method within the database.

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.