feat(Salesforce Node): Add support for PKCE (#14082)

This commit is contained in:
Jon
2025-03-24 12:31:45 +00:00
committed by GitHub
parent cc502fb8c3
commit defeb2e817

View File

@@ -10,6 +10,12 @@ export class SalesforceOAuth2Api implements ICredentialType {
documentationUrl = 'salesforce';
properties: INodeProperties[] = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'pkce',
},
{
displayName: 'Environment Type',
name: 'environment',
@@ -26,12 +32,6 @@ export class SalesforceOAuth2Api implements ICredentialType {
],
default: 'production',
},
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
{
displayName: 'Authorization URL',
name: 'authUrl',