From 4f966673f44ae103cfa9ad9e85e2d2e3fd7bf592 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Wed, 10 Apr 2024 15:21:12 +0100 Subject: [PATCH 1/3] wip --- docs/integrations/builtin/credentials/jwt.md | 28 ++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docs/integrations/builtin/credentials/jwt.md diff --git a/docs/integrations/builtin/credentials/jwt.md b/docs/integrations/builtin/credentials/jwt.md new file mode 100644 index 000000000..523304e81 --- /dev/null +++ b/docs/integrations/builtin/credentials/jwt.md @@ -0,0 +1,28 @@ +--- +title:JWT credentials +description: Documentation for the JWT credentials. Use these credentials to authenticate JWT in n8n, a workflow automation platform. +--- + +# JWT credentials + +You can use these credentials to authenticate the following nodes: + +[JWT](/integrations/builtin/core-nodes/n8n-nodes-base.jwt/) + +## Prerequisites + +_Include info on services they need to sign up for_ + +## Supported authentication methods + +You can use a passphrase or a PEM key. + +## Related resources + + +Refer to [_Name_'s API documentation](){:target=_blank .external-link} for more information about authenticating with the service. + + + + + From dab084a36adc3762a18bf9ce11efe57fa3d18b0f Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Wed, 10 Apr 2024 15:23:32 +0100 Subject: [PATCH 2/3] add jwt creds --- docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md | 4 ++++ docs/integrations/builtin/credentials/jwt.md | 6 +----- mkdocs.yml | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md index 4c2b13ebe..00f66eae8 100644 --- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md +++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md @@ -8,6 +8,10 @@ contentType: integration Work with JSON web tokens in your n8n workflows. +/// note | Credentials +You can find authentication information for this node [here](/integrations/builtin/credentials/jwt/). +/// + /// note | Examples and templates For usage examples and templates to help you get started, refer to n8n's [JWT integrations](https://n8n.io/integrations/jwt/){:target=_blank .external-link} page. /// diff --git a/docs/integrations/builtin/credentials/jwt.md b/docs/integrations/builtin/credentials/jwt.md index 523304e81..02e0f60f3 100644 --- a/docs/integrations/builtin/credentials/jwt.md +++ b/docs/integrations/builtin/credentials/jwt.md @@ -9,9 +9,6 @@ You can use these credentials to authenticate the following nodes: [JWT](/integrations/builtin/core-nodes/n8n-nodes-base.jwt/) -## Prerequisites - -_Include info on services they need to sign up for_ ## Supported authentication methods @@ -19,8 +16,7 @@ You can use a passphrase or a PEM key. ## Related resources - -Refer to [_Name_'s API documentation](){:target=_blank .external-link} for more information about authenticating with the service. +Refer to the [JWT website](https://jwt.io/introduction){:target=_blank .external-link} for more information about working with JWTs. diff --git a/mkdocs.yml b/mkdocs.yml index dd5e81efe..8e5f26ae7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -906,6 +906,7 @@ nav: - integrations/builtin/credentials/jenkins.md - integrations/builtin/credentials/jira.md - integrations/builtin/credentials/jotform.md + - integrations/builtin/credentials/jwt.md - integrations/builtin/credentials/kafka.md - integrations/builtin/credentials/keap.md - integrations/builtin/credentials/kibana.md From 09b780df47529ac1fe3f736c128be046b40810cb Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Wed, 10 Apr 2024 15:32:51 +0100 Subject: [PATCH 3/3] fix title --- docs/integrations/builtin/credentials/jwt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/builtin/credentials/jwt.md b/docs/integrations/builtin/credentials/jwt.md index 02e0f60f3..0cc8ce7f3 100644 --- a/docs/integrations/builtin/credentials/jwt.md +++ b/docs/integrations/builtin/credentials/jwt.md @@ -1,5 +1,5 @@ --- -title:JWT credentials +title: JWT credentials description: Documentation for the JWT credentials. Use these credentials to authenticate JWT in n8n, a workflow automation platform. ---