Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 1.29 KB

File metadata and controls

11 lines (8 loc) · 1.29 KB

Ditto Tutorial: Online with Authentication in React

This code goes with the blog post Ditto Tutorial: Online with Authentication in React.

This project was bootstrapped with Create React App.

  1. First run npm install
  2. If you haven't yet, sign in or create an account on the Ditto Portal and create an App.
  3. Once you have an App, copy your App ID and Playground Token into src/ditto.js. Under the Auth menu, select with Authentication. On that same page, under Authentication Webhooks, set NAME to replit-auth and URL to https://alloweveryonewebhook.tester28.repl.co/auth (PLEASE NOTE that this webhook URL should only be used for trying out this tutorial).
  4. Create a new App and API on auth0.com. Copy the App domain, App ClientID, and API audience into src/index.js. Copy the App domain into src/App.js. Configure Auth0 Allowed Callbacks URLs, Allowed Web Origins, and Allowed Logout URLs to localhost:3000. Under Grant Types, make sure the “Authorization Code” grant type is enabled.
  5. Run npm run start.