Skip to content

Instantly share code, notes, and snippets.

@travisvalentine
Last active June 10, 2023 19:00
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save travisvalentine/8796187 to your computer and use it in GitHub Desktop.
Save travisvalentine/8796187 to your computer and use it in GitHub Desktop.
Setup Facebook app to test authentication locally (aka, setting up App Domain)

Note: I had issues with setting up my Facebook app so authentication would work. I'd receive the error at the bottom, and it took me a while to figure out what was wrong

Here are the steps I took:

  • Go to http://developers.facebook.com/, create, and setup your app
  • When inside the dashboard, click "Settings"
  • Click "Add Platform"
  • Choose website (for authentication via the web app)
  • Add http://localhost:3000/ as "Site URL" (and "Mobile URL" if necessary)
  • Add localhost to "App Domains" above
  • Click Save

This fixed the error I kept receiving:

Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.
Copy link

ghost commented Apr 23, 2018

@silenzium can you please explain further how you acomplished this? plz! I've been stuck in this for DAYS now...

@marlosirapuan
Copy link

./ngronk http 3000 take the generated https url (like 'http://d75ebac2.ngrok.io') and add it in the oauth-url("Valid OAuth Redirect URIs").

@SiroDiaz
Copy link

I'm having the same problem to use https in local. Ngrok domains don't work for Facebook unless you pay for it and get a subdomain with the app name.

@spcheema
Copy link

spcheema commented May 28, 2018

@SiroDiaz it's working fine ngrok. You can use the free tier account of ngrok. The only thing you need to care about is sub-domain which is changed every time you run ./ngrok http 3000.

@vituocgia
Copy link

A BIG NOTE FOR YOU GUYS: MUST MAKE YOUR FB APP IN DEVELOPMENT MODE, so you can test with your localhost domain :)
Just enter your FB password and check ;) - That's all

@chadyred
Copy link

Are you sure about that ? It is HTTPS even if I put localhost on Facebook login > Settings > Valid URI redirect OAuth...

@akhelij
Copy link

akhelij commented Jul 16, 2018

I simply put https://localhost:8000/ on Facebook login > Settings > Valid URI redirect OAuth and turn my FB APP in development mode and it works.

@3Cement
Copy link

3Cement commented Oct 12, 2018

@akhelij so how did you get https for your localhost??
@vituocgia when I change app to a development mode I can't even run app because I didn't start, Is it really work for you?

@nicky-lenaers
Copy link

Very curious about a solution here! Enforcement of HTTPS makes it hard to work with locally :(

@kamel-romdhani
Copy link

thank you for sharing this

@Miguel-Lara
Copy link

Thank you! You saved me.

@BullHoN
Copy link

BullHoN commented Apr 2, 2019

so do we need to convert our localhost into https?

@kire73
Copy link

kire73 commented Aug 30, 2019

This solution worked for me. Trying to add localhost as a "Website" (Platform) in the app settings was being rejected because it didn't match my production domains, which I didn't want to remove.

Even though the message was saying it needed to be among my app domains, it turned out that in

Products -> Facebook Login -> Settings

with Strict Mode enabled, simply adding https://localhost:8000/auth/facebook/callback to the Valid OAuth Redirect URIs allowed me to test the authentication with ssl, locally.

I should probably also note that localhost was already in my "App Domains" in the basic settings (while "https://" and port were being removed when I tried to enter them)

@Ashish-gh23
Copy link

Hi I am still stuck with this issue, Can anyone please help me with this
I have added https://localhost:3000/auth/facebook/secrets to valid OAuth REdirect URIs and undeer app domain i have added link of my localhost http://localhost:3000/auth/facebook/secrets..
But still I am getting error as

This site can’t provide a secure connectionlocalhost sent an invalid response.
Try running Windows Network Diagnostics.
ERR_SSL_PROTOCOL_ERROR

@lakhbawa
Copy link

Thank you man

@imtechieraj
Copy link

This solution worked for me. Trying to add localhost as a "Website" (Platform) in the app settings was being rejected because it didn't match my production domains, which I didn't want to remove.

Even though the message was saying it needed to be among my app domains, it turned out that in

Products -> Facebook Login -> Settings

with Strict Mode enabled, simply adding https://localhost:8000/auth/facebook/callback to the Valid OAuth Redirect URIs allowed me to test the authentication with ssl, locally.

I should probably also note that localhost was already in my "App Domains" in the basic settings (while "https://" and port were being removed when I tried to enter them)

You Save my life <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment