File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
src/Umbraco.Cms.Integrations.Crm.Hubspot Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -31,17 +31,13 @@ Add this to an app setting in `Web.config`:
31
31
32
32
#### OAuth
33
33
34
- In order to use HubSpot OAuth authentication, you will need at least one private app registered with your account.
35
-
36
- Log into your HubSpot account, go to _ Settings > Integrations > Private Apps_ and create a new private app. In the _ Scopes_ tab select
37
- the following two: _ oauth_ and _ forms_ .
38
-
39
- Add the following app settings in ` Web.config ` :
34
+ Add the following app settings in ` Web.config ` making sure the references of the _ Umbraco HubSpot Form Picker_ app are present:
40
35
```
41
36
<appSettings>
42
37
...
43
- <add key="Umbraco.Cms.Integrations.Crm.Hubspot.OAuthClientId" value="[your Client ID] " />
38
+ <add key="Umbraco.Cms.Integrations.Crm.Hubspot.OAuthClientId" value="8b4db9a8-3b78-48bc-85b0-96a4211a1c83 " />
44
39
<add key="Umbraco.Cms.Integrations.Crm.Hubspot.OAuthScopes" value="oauth forms" />
40
+ <add key="Umbraco.Cms.Integrations.Crm.Hubspot.OAuthAuthorizationBaseUrl" value="https://app-eu1.hubspot.com/oauth/authorize"/>
45
41
<add key="Umbraco.Cms.Integrations.Crm.Hubspot.OAuthRedirectUrl" value="[your website URL]" />
46
42
<add key="Umbraco.Cms.Integrations.OAuthProxyUrl" value="[Umbraco proxy URL]" />
47
43
...
@@ -82,4 +78,4 @@ And render the form using (assuming a property based on the created data type, w
82
78
83
79
```
84
80
@Html.RenderHubspotForm(Model.HubspotForm)
85
- ```
81
+ ```
You can’t perform that action at this time.
0 commit comments