Creating facebook app with callback url

facebook, javascript, node.js, oauth-2.0, passport.js

Solution

Writing as of Feb 2, 2014 I found these instructions to be current;

- Go to your app

- On the left-hand sidebar, click Settings

- Under the main section, click Add Platform

- Click 'Website'

- Specify your callback in the Site URL field (e.g. `http://localhost:3000/auth/facebook/callback)`.

Problem

I am creating a facebook app. And I want to let users to login to my website using it(Using passportjs). But to do that, I need to give callback url(my website url). But I couldn't find that field in the facebook app creating page. Am I missing something? I have searched for it for a quite long time.

Original source