Last active
August 26, 2022 17:19
-
-
Save stefanozanella/0e436fd29f3ecc9523219b0238714da9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring: | |
security: | |
oauth2: | |
client: | |
registration: | |
hubspot: | |
authorization-grant-type: authorization_code | |
client-id: your-client-id | |
client-secret: your-client-secret | |
redirect-uri: https://yourlocal.app/oauth2/callback/hubspot | |
client-authentication-method: client_secret_post | |
scope: crm.objects.leads.read, settings.users.read | |
provider: | |
hubspot: | |
authorization-uri: https://app-eu1.hubspot.com/oauth/authorize | |
token-uri: https://api.hubapi.com/oauth/v1/token |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment