From 09b2fa5c866746189923c9b7d442b63f2d7f9c7d Mon Sep 17 00:00:00 2001 From: Shafie Date: Tue, 8 Oct 2019 07:40:30 -0700 Subject: [PATCH] Use http for Github OAuth callback link (#16) Since this tutorial is for beginners. It is recommended to have a work example for user. https:// doesn't work on localhost and will require additional library --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 480beb7..afcf162 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Next, we need to install the project dependencies, which are listed in `requirem Head over to [GitHub OAuth apps](https://github.com/settings/developers) and create a new OAuth app. Name it what you like but you'll need to specify a callback URL, which should be something like: ``` -https://localhost:5000/auth/callback/github +http://localhost:5000/auth/callback/github ``` The default port for Flask apps is `5000`, but you may need to update this if your setup uses a different port or if you're hosting your app somewhere besides your local machine.