A quickstart app for integrators looking to use HubSpot's OAuth 2.0. Written in Node.js.
Note: This app does not store any data in a persistent way, so restarting the app will clear the retrieved access tokens.
-
Redirect to HubSpot's OAuth 2.0 server
When you open your browser to
http://localhost:3000/install
, the app will redirect you to the authorization page on HubSpot's server. Here you will choose which account you'd like to install the app in and give consent for it to act on your behalf. When this is complete, HubSpot will redirect you back to the app. -
Exchange an authorization code for access tokens
Now that you're back in the app, it will retrieve an access token and refresh token from HubSpot's server, using an authorization code that was supplied by HubSpot when you granted access to the app.
-
Retrieve a contact
When the app has received an access token, it will redirect you to
http://localhost:3000/
. It will then use the access token to make a query to HubSpot's Contacts API, and display the retrieved contact's name on the page.
Before running the quickstart app, make sure you have:
- The tools required to run using the method of your choice:
- Option 1: Running locally using Node.js: Node.js (>=6) and yarn
- Option 2: Running in a Docker container: Docker (>=1.13)
- A free HubSpot developer account (sign up)
- An app associated with your developer account (create an app)
- A HubSpot account to install the app in (you can use an existing one, or create a test account)
Note: You must be a super-admin for the account that you want to install the app in.
- Clone the repository:
$ git clone [email protected]:HubSpot/oauth-quickstart-nodejs.git
- Create a
.env
file in the root of the repository with the ID and secret for your app (found on the app settings page), eg:TheCLIENT_ID='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' CLIENT_SECRET='yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy' SCOPE='crm.objects.contacts.read,forms'
SCOPE
environment variable is optional in this example. If not set, this application will use the scopecrm.objects.contacts.read
. The scopes can be separated by a comma, space, or URL-encoded space (%20
) - From the root of the repository, run:
$ yarn install $ yarn start
- Open your browser to
http://localhost:3000/install
to kick off the OAuth 2.0 flow
- Build an image of the quickstart app
$ docker build -t hs-oauth-quickstart:latest git://github.com/HubSpot/oauth-quickstart-nodejs.git
- Run a container with the new image
$ docker run --init -it -p 3000:3000 -e CLIENT_SECRET=$CLIENT_SECRET -e CLIENT_ID=$CLIENT_ID -e SCOPE=contacts,forms hs-oauth-quickstart:latest