From 92909e303708cdea86b3971e122f826c6325a8e1 Mon Sep 17 00:00:00 2001 From: Vinicius Date: Wed, 25 Oct 2023 17:51:59 -0300 Subject: [PATCH] fix(links): use https instead http --- docs/flows/webhook/flow-creating-webhook.mdx | 2 +- docs/webhook/api/webhook-api.mdx | 4 ++-- .../current/flows/flow-create-charge-api.mdx | 4 ++-- .../current/flows/webhook/flow-creating-webhook.mdx | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/flows/webhook/flow-creating-webhook.mdx b/docs/flows/webhook/flow-creating-webhook.mdx index fa7465b..43a5986 100644 --- a/docs/flows/webhook/flow-creating-webhook.mdx +++ b/docs/flows/webhook/flow-creating-webhook.mdx @@ -162,7 +162,7 @@ const createWebhook = async () => { "isActive": true } - const response = await fetch('http://api.woovi.com/api/openpix/v1/webhook', { + const response = await fetch('https://api.woovi.com/api/openpix/v1/webhook', { method: 'POST', headers: { Accept: 'application/json', diff --git a/docs/webhook/api/webhook-api.mdx b/docs/webhook/api/webhook-api.mdx index 46d32bc..e5cbed2 100644 --- a/docs/webhook/api/webhook-api.mdx +++ b/docs/webhook/api/webhook-api.mdx @@ -26,7 +26,7 @@ defaultValue="curl" ```jsx -curl --location --request POST 'http://api.woovi.com/api/openpix/v1/webhook' \ +curl --location --request POST 'https://api.woovi.com/api/openpix/v1/webhook' \ --header 'Content-Type: application/json' \ --header 'Authorization: ' \ --data-raw '{ @@ -53,7 +53,7 @@ const createWebhook = async () => { }; const response = await fetch( - 'http://api.woovi.com/api/openpix/v1/webhook', + 'https://api.woovi.com/api/openpix/v1/webhook', { method: 'POST', headers: { diff --git a/i18n/en/docusaurus-plugin-content-docs/current/flows/flow-create-charge-api.mdx b/i18n/en/docusaurus-plugin-content-docs/current/flows/flow-create-charge-api.mdx index ad5b1d7..f7b5c5a 100755 --- a/i18n/en/docusaurus-plugin-content-docs/current/flows/flow-create-charge-api.mdx +++ b/i18n/en/docusaurus-plugin-content-docs/current/flows/flow-create-charge-api.mdx @@ -18,7 +18,7 @@ defaultValue="curl" ```jsx -curl --location --request POST 'http://api.openpix.com.br/api/openpix/v1/charge' \ +curl --location --request POST 'https://api.openpix.com.br/api/openpix/v1/charge' \ --header 'Content-Type: application/json' \ --header 'Authorization: ' \ --data-raw '{ @@ -51,7 +51,7 @@ const createCharge = async () => { } } - const response = await fetch('http://api.openpix.com.br/api/openpix/v1/charge', { + const response = await fetch('https://api.openpix.com.br/api/openpix/v1/charge', { method: 'POST', headers: { Accept: 'application/json', diff --git a/i18n/en/docusaurus-plugin-content-docs/current/flows/webhook/flow-creating-webhook.mdx b/i18n/en/docusaurus-plugin-content-docs/current/flows/webhook/flow-creating-webhook.mdx index 4374bca..76829dc 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/flows/webhook/flow-creating-webhook.mdx +++ b/i18n/en/docusaurus-plugin-content-docs/current/flows/webhook/flow-creating-webhook.mdx @@ -160,7 +160,7 @@ const createWebhook = async () => { "isActive": true } - const response = await fetch('http://api.openpix.com.br/api/openpix/v1/webhook', { + const response = await fetch('https://api.openpix.com.br/api/openpix/v1/webhook', { method: 'POST', headers: { Accept: 'application/json',