Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating facebook app with callback url

Tags:

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.

like image 775
Selvaraj M A Avatar asked Feb 23 '13 03:02

Selvaraj M A


People also ask

How do I create a data deletion callback URL on Facebook?

Go to your Facebook profile's Apps and Websites settings tab: https://www.facebook.com/settings?tab=applications. Click the View Removed Apps and Websites link. In the popup, click the View button to the right of the application. In the window, appeared click Send Request to trigger your callback.

What is deauthorize callback URL Facebook?

Facebook Deauthorize callback is used to getting notification to the app owner when a user uninstall our app from their fan page or profile. We have an option in Facebook's advanced section of app settings named “Deauthorize Callback“.

What is application callback URL?

Callback URLs are the URLs that Auth0 invokes after the authentication process. Auth0 redirects back to this URL and appends additional parameters to it, including an access code which will be exchanged for an id_token , access_token and refresh_token .


2 Answers

  1. Go to your app.
  2. On the left-hand sidebar, click Settings.
  3. Under the main section, click Add Platform.
  4. Click 'Website'.
  5. Specify your callback in the Site URL field (e.g. http://localhost:3000/auth/facebook/callback).
like image 28
Stanley Avatar answered Oct 09 '22 09:10

Stanley


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

  1. Go to your app
  2. On the left-hand sidebar, click Settings
  3. Under the main section, click Add Platform
  4. Click 'Website'
  5. Specify your callback in the Site URL field (e.g. http://localhost:3000/auth/facebook/callback).
like image 87
Mic Fok Avatar answered Oct 09 '22 10:10

Mic Fok