@@ -4,14 +4,14 @@ This sample demonstrates how to add authentication to a Python web app using Aut
44
55# Running the App
66
7- To run the sample, make sure you have ` python ` , ` pip ` installed.
7+ To run the sample, make sure you have ` python ` and ` pip ` installed.
88
99Rename ` .env.example ` to ` .env ` and populate it with the client ID, domain, secret, callback URL and audience for your
1010Auth0 app. If you are not implementing any API you can use ` https://YOUR_DOMAIN.auth0.com/userinfo ` as the audience.
1111Also, add the callback URL to the settings section of your Auth0 client.
1212
1313Register ` http://localhost:3000/callback ` as ` Allowed Callback URLs ` and ` http://localhost:3000 `
14- as ` Allowed Logout URLs ` in your app settings.
14+ as ` Allowed Logout URLs ` in your client settings.
1515
1616Run ` pip install -r requirements.txt ` to install the dependencies and run ` python server.py ` .
1717The app will be served at [ http://localhost:3000/ ] ( http://localhost:3000/ ) .
@@ -34,15 +34,15 @@ and run the docker image on Windows.
3434
3535Auth0 helps you to:
3636
37- * Add authentication with [ multiple authentication sources] ( https://docs. auth0.com/identityproviders ) ,
37+ * Add authentication with [ multiple authentication sources] ( https://auth0.com/docs /identityproviders ) ,
3838either social like ** Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, among others** ,or
3939enterprise identity systems like ** Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider** .
4040* Add authentication through more traditional ** [ username/password databases] ( https://docs.auth0.com/mysql-connection-tutorial ) ** .
41- * Add support for ** [ linking different user accounts] ( https://docs. auth0.com/link-accounts ) ** with the same user.
42- * Support for generating signed [ JSON Web Tokens] ( https://docs. auth0.com/jwt ) to call your APIs and
41+ * Add support for ** [ linking different user accounts] ( https://auth0.com/docs /link-accounts ) ** with the same user.
42+ * Support for generating signed [ JSON Web Tokens] ( https://auth0.com/docs /jwt ) to call your APIs and
4343** flow the user identity** securely.
4444* Analytics of how, when and where users are logging in.
45- * Pull data from other sources and add it to the user profile, through [ JavaScript rules] ( https://docs. auth0.com/rules ) .
45+ * Pull data from other sources and add it to the user profile, through [ JavaScript rules] ( https://auth0.com/docs /rules ) .
4646
4747## Create a free account in Auth0
4848
0 commit comments