Back to connector

LogoSalesforce Integration Development Guide

Add white-label customer-facing integration with Salesforce into your app with just a few lines of code.

To create a development account and OAuth application in Salesforce, follow these steps:

  1. Sign up for a Salesforce Developer Program:

    • Get a Salesforce deveveloper account here
  2. Create an OAuth Application:

    • Follow the steps outlined in this guide to create create a connected app and get client ID / client secret
    • Make sure the Callback URI in your application is set to https://api.integration.app/oauth-callback
    • Add the following OAuth scopes to your application:
      • Access the identity URL service (id, profile, email, address, phone)
      • Manage user data via APIs (api)
      • Perform requests at any time (refresh_token, offline_access)
  3. Use the OAuth Application:

    • To use the OAuth application, you'll need to follow the OAuth authorization flow, which involves redirecting users to the Microsoft authorization endpoint and obtaining an access token
    • Refer to the Microsoft API documentation for detailed instructions on implementing the OAuth flow and making API requests

Remember to keep your Client Secret secure and never expose it publicly.

That's it! You have successfully created a developer account and OAuth application in Salesforce.