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 facebook app. I need the facebook users to authenticate my app before they can use it.

under settings for my app, I found a auth dialog box under facebook developers -> settings -> permissions.

I created this: http://i46.tinypic.com/34gwyn6.png

My question is then, how do I activate it?

When I test the application with a facebook account, I can never retrieve the userid from that user.

share|improve this question
Are you using the PHP SDK or the JavaScript SDK, or another way to access Facebook's API? This might be a good place to start reading: developers.facebook.com/docs/guides/web/#login – Joakim Syk Oct 8 '12 at 10:11
Hi, I am using the JavaScript SDK :) Sorry. This looks very correct. The only problem is, I don't like the login button. Do you know if there is any way, for the OAUTH dialog to just show, when the user opens the app ? I found something like this: var oauth_url = 'facebook.com/dialog/oauth/';; oauth_url += '?client_id=192352355546693'; oauth_url += '&redirect_url=' + 'apps.facebook.com /dewgwegwagenx/'; oauth_url += '&scope=user_about_me'; window.top.location = oauth_url; – Pavenhimself Oct 8 '12 at 11:21

1 Answer

up vote 0 down vote accepted

The settings you made in your app dashboard do only affect Authenticated Referrals – when you handle login yourself in your app, you have to request permissions via the scope parameter.

And since you’re using the JS SDK already, just use FB.login to trigger the Auth dialog for your app.

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.