A sample demo app to showcase the OAuth2.0 and openID Connect authorization workflows using an express app
This is a sample
app built using Node.js and Express Framework to showcase how to Authorize and Authenticate using Intuit’s OAuth2.0 Client library.
$ npm install
Copy the contents from .env.example
to .env
within the sample directory:
$ cp .env.example .env
Edit the .env
file to add your:
false
. If you want to serve the Sample App over HTTPS ( which is mandatory if you want to test this app using Production Credentials), set the variable to true
If you want your enpoint to be exposed over the internet. The easiest way to do that while you are still developing your code locally is to use ngrok.
You dont have to worry about installing ngrok. The sample application does that for you.
NGROK_ENABLED
= true
in .env
$ npm start
NGROK_ENABLED
=false
in .env
)You will see an URL as below:
💳 See the Sample App in your browser : http://localhost:8000
💳 Copy this into Redirect URI on the browser : http://localhost:8000/callback
💻 Make Sure this redirect URI is also copied on your app in : https://developer.intuit.com
NGROK_ENABLED
=true
in .env
)Your will see an URL as below :
💻 See the Sample App in your browser: https://9b4ee833.ngrok.io
💳 Copy and paste this Redirect URI on the browser : https://9b4ee833.ngrok.io/callback
💻 Make Sure this redirect URI is also copied on your app in : https://developer.intuit.com
Click on the URL and follow through the instructions given in the sample app.
Project Repo
Intuit OAuth2.0 API Reference
Intuit OAuth2.0 Playground
Any reports of problems, comments or suggestions are most welcome.
Please report these on Issue Tracker in Github.