...
6. Add the following two lines between the <appSettings> and </appSettings> lines, substituting ConsumerKey and ConsumerSecret with the values from step #4 :
Code Block | ||
---|---|---|
| ||
<add key="SalesForceClientId" value="ConsumerKey"/> |
...
<add key="SalesForceClientSecret" value="ConsumerSecret"/> |
7. If your SalesForce instance requires a custom login domain uri (e.g. yourcustomdomain.salesforce.com), add the following key to the appSettings.config file
Code Block | ||
---|---|---|
| ||
<add key="SalesForceAuthorizeUri" value="https:// |
...
yourcustomdomain.salesforce.com" /> |
Note: We do not currently support multiple domains.
...