This is the official repository for the Integrating With HubSpot I: Foundations Certification Course. For more information, please go to HubSpot Academy.
The Foundation of Authenticating Integrations Lesson
- The Basics of the OAuth Flow
- Refreshing an Access Token1
- The Basics of Using a Private App
Coding Basic Web Apps to Make API Calls Lesson
- Building a Hello World App with HubSpot APIs
- API POST Requests and Custom CRM Properties
1 There's a step in the "Refreshing an Access Token" video that's accidentally omitted. To use the accessTokenCache constant, you must require the Node library Node-Cache. Then, underneath the const refreshTokenStore = {};
, you must add in const accessTokenCache = new NodeCache({ deleteOnExpire: true});
. This is reflected in the finished index.js file.