1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-21 09:59:34 +03:00

feat(Wordpress Node): Add option to ignore error when using self signed certificates (#8199)

## Summary
Adds option to ignore SSL issues to the Wordpress node, This is useful
when using a self signed certificate in a local setup.


## Related tickets and issues
https://github.com/n8n-io/n8n/issues/8151
This commit is contained in:
Jon 2024-01-03 10:52:01 +00:00 committed by GitHub
parent 5c078f1b3d
commit 65c8e12b96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -35,6 +35,13 @@ export class WordpressApi implements ICredentialType {
default: '',
placeholder: 'https://example.com',
},
{
displayName: 'Ignore SSL Issues',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
default: false,
},
];
authenticate: IAuthenticateGeneric = {
@ -52,6 +59,7 @@ export class WordpressApi implements ICredentialType {
baseURL: '={{$credentials?.url}}/wp-json/wp/v2',
url: '/users',
method: 'GET',
skipSslCertificateValidation: '={{$credentials.allowUnauthorizedCerts}}',
},
};
}

View File

@ -30,6 +30,7 @@ export async function wordpressApiRequest(
qs,
body,
uri: uri || `${credentials.url}/wp-json/wp/v2${resource}`,
rejectUnauthorized: !credentials.allowUnauthorizedCerts,
json: true,
};
options = Object.assign({}, options, option);