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 am making a simple contest on Facebook wich is a formular to fill in. I would like to add a mechanism with share options.

You will win another chance for each friend who will click on the backlink.

Technically i wish to add to the shared url the user id to add 1 chance for him in my database (sharing options will appear after the form)

So i need the user id but i don't want to display the FB popup "accept this application" before launching my app. Is it possible?

If not, do you have an id or online tuto to do it with open graph and all that stuff?

Thank you in advance

share|improve this question
2  
Nope, you will only get the user id if you have them connect to your app first. developers.facebook.com/docs/concepts/login – CBroe Nov 5 '12 at 14:57

1 Answer

up vote 0 down vote accepted

There is no way to get the User-/Facebook-ID of the user without login/authorization. The signed request variable only presents basic infos if the user is not logged in (like status, admin status, locale, ...).

So, in order to get the User ID you have to authorize the user, i recommend the JavaScript SDK for this:

https://developers.facebook.com/docs/howtos/login/getting-started/

share|improve this answer
Thanks a lot for your answer. – Mr Mouflux Nov 5 '12 at 18:35

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.