Skip to content

Commit

Permalink
fix: corrige resposta para callback de webhook
Browse files Browse the repository at this point in the history
Este commit implementa um workaround no arquivo callback.php que retorna um status code 200 quando a requisição contém uma query que começa com 'echo'. Essa solução visa atender a verificação do webhook.
  • Loading branch information
andrekutianski committed Apr 25, 2024
1 parent 39ae7c0 commit 60687a5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/addons/NFEioServiceInvoices/callback.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@
exit();
}

// workaround para retornar status code 200 quando a requisição conter uma query iniciando em 'echo' (verificacao do webhook)
if (isset($_GET['echo'])) {
http_response_code(200);
echo "ok";
exit();
}

// armazena o cabecalho da requisição
$headers = getallheaders();

Expand Down

0 comments on commit 60687a5

Please sign in to comment.