Reviewer:
1. DM me to get a client ID/secret for the Hubspot app and login
credentials for a sample Hubspot account
2. For now, you'll need to run the engine on the branch
`nate/token-introspection` for the auth flow to work with Hubspot
3. Add the following to `auth.providers` in your engine yaml:
```yaml
- id: arcade-hubspot
description: 'Hubspot provider'
enabled: true
type: oauth2
provider_id: hubspot
client_id: ${env:HUBSPOT_CLIENT_ID}
client_secret: ${env:HUBSPOT_CLIENT_SECRET}
```
17 lines
416 B
Python
17 lines
416 B
Python
import os
|
|
|
|
HUBSPOT_BASE_URL = "https://api.hubapi.com"
|
|
HUBSPOT_CRM_BASE_URL = f"{HUBSPOT_BASE_URL}/crm"
|
|
HUBSPOT_DEFAULT_API_VERSION = "v3"
|
|
|
|
try:
|
|
HUBSPOT_MAX_CONCURRENT_REQUESTS = int(os.getenv("HUBSPOT_MAX_CONCURRENT_REQUESTS", 3))
|
|
except ValueError:
|
|
HUBSPOT_MAX_CONCURRENT_REQUESTS = 3
|
|
|
|
GLOBALLY_IGNORED_FIELDS = [
|
|
"createdate",
|
|
"hs_createdate",
|
|
"hs_lastmodifieddate",
|
|
"lastmodifieddate",
|
|
]
|