Skip to content

Commit

Permalink
🐛 fix: get info
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelvserafim authored Jun 25, 2024
1 parent 32a0ca0 commit 256310a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/WhatsApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private function request()
public function connect()
{
// Define o caminho, método e corpo da requisição para obter o código QR em HTML.
$this->parth = "{$this->key}/instance";
$this->parth = "/{$this->key}/instance";
$this->method = "POST";
// Executa a requisição e retorna o resultado.
return $this->request();
Expand All @@ -72,7 +72,7 @@ public function connect()
public function inforInstance()
{
// Define o caminho, método e corpo da requisição para obter informações sobre a instância.
$this->parth = "{$this->key}/instance";
$this->parth = "/{$this->key}/instance";
$this->method = "GET";
// Executa a requisição e retorna o resultado.
return $this->request();
Expand All @@ -90,7 +90,7 @@ public function inforInstance()
public function updateWebhook($body)
{
// Define o caminho, método e corpo da requisição para atualizar o webhook.
$this->parth = "{$this->key}/instance";
$this->parth = "/{$this->key}/instance";
$this->method = "PUT";
$this->body = json_encode($body);
// Executa a requisição e retorna o resultado.
Expand All @@ -106,7 +106,7 @@ public function updateWebhook($body)
public function logout()
{
// Define o caminho, método e corpo da requisição para efetuar o logout.
$this->parth = "{$this->key}/instance";
$this->parth = "/{$this->key}/instance";
$this->method = "DELETE";

// Executa a requisição e retorna o resultado.
Expand Down

0 comments on commit 256310a

Please sign in to comment.