mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(Salesforce Node): Add support for PKCE (#14082)
This commit is contained in:
@@ -10,6 +10,12 @@ export class SalesforceOAuth2Api implements ICredentialType {
|
|||||||
documentationUrl = 'salesforce';
|
documentationUrl = 'salesforce';
|
||||||
|
|
||||||
properties: INodeProperties[] = [
|
properties: INodeProperties[] = [
|
||||||
|
{
|
||||||
|
displayName: 'Grant Type',
|
||||||
|
name: 'grantType',
|
||||||
|
type: 'hidden',
|
||||||
|
default: 'pkce',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Environment Type',
|
displayName: 'Environment Type',
|
||||||
name: 'environment',
|
name: 'environment',
|
||||||
@@ -26,12 +32,6 @@ export class SalesforceOAuth2Api implements ICredentialType {
|
|||||||
],
|
],
|
||||||
default: 'production',
|
default: 'production',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
displayName: 'Grant Type',
|
|
||||||
name: 'grantType',
|
|
||||||
type: 'hidden',
|
|
||||||
default: 'authorizationCode',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
displayName: 'Authorization URL',
|
displayName: 'Authorization URL',
|
||||||
name: 'authUrl',
|
name: 'authUrl',
|
||||||
|
|||||||
Reference in New Issue
Block a user