Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

6. Add the following two lines between the <appSettings> and </appSettings> lines, substituting ConsumerKey and ConsumerSecret with the values from step #4 :

Code Block
languagexml
<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
languagexml
<add key="SalesForceAuthorizeUri" value="https://

...

 yourcustomdomain.salesforce.com" />

Note: We do not currently support multiple domains.

...