Authenticating Using Salesforce Community User
Scenario - Sometimes we want to authorize servers to access data without interactively logging in each time the servers exchange information. For these cases, we can use the OAuth 2.0 JSON Web Token (JWT) bearer flow. This flow uses a certificate to sign the JWT request and doesn’t require explicit user interaction. However, this flow does require prior approval of the client app. Profiles will need to be pre-authorized with the connected app. There was also a requirement to make a rest call to get Salesforce data using Salesforce Community User Context.
Option 1: Authenticate using the SOAP login request
Option 2: OAuth 2.0 JWT Bearer Flow for Server-to-Server Integration
Comments
Post a Comment