-
Notifications
You must be signed in to change notification settings - Fork 99
Closed
ballerina-platform/module-ballerinax-salesforce
#390Labels
Description
Area
Area/Connector
Current Limitation
The salesforce listener currently does not support OAuth2 authentication.
Suggested Improvement
To add OAuth2 support, the following changes would be needed:
Listener configuration would be as follows.
public type ListenerConfig record {|
CredentialsConfig|OAuth2Config auth; // Support both auth methods
int|ReplayOptions replayFrom = REPLAY_FROM_TIP;
boolean isSandBox = false;
|};
public type OAuth2Config http:BearerTokenConfig|http:OAuth2RefreshTokenGrantConfig|http:OAuth2ClientCredentialsGrantConfig;
Version
No response
Reactions are currently unavailable