{"id":1053,"date":"2022-11-08T20:40:57","date_gmt":"2022-11-08T20:40:57","guid":{"rendered":"https:\/\/alvochat.com\/blog\/php-kullanarak-whatsapp-api-nasil-gonderilir\/"},"modified":"2022-11-13T06:27:29","modified_gmt":"2022-11-13T06:27:29","slug":"php-kullanarak-whatsapp-api-nasil-gonderilir","status":"publish","type":"post","link":"https:\/\/alvochat.com\/blog\/tr\/php-kullanarak-whatsapp-api-nasil-gonderilir\/","title":{"rendered":"PHP Kullanarak WhatsApp API Nas\u0131l G\u00f6nderilir"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Giri\u015f<\/h2>\n\n<p>Bu kod par\u00e7ac\u0131\u011f\u0131nda, PHP kullanarak bir WhatsApp API&#8217;sinin nas\u0131l g\u00f6nderilece\u011fini, bir metin mesaj\u0131, WhatsApp \u015eablonlar\u0131, medya, etkile\u015fimli d\u00fc\u011fmeler, listeler, \u00fcr\u00fcnler &#8230; vb. g\u00f6ndermeyi \u00f6\u011freneceksiniz, A\u015fa\u011f\u0131daki kodlar\u0131 \u00e7al\u0131\u015ft\u0131rmak i\u00e7in Alvochat hesab\u0131 gereklidir. Hesab\u0131n\u0131z yoksa bir <a href=\"http:\/\/alvochat.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Hesap olu\u015fturun<\/a>.<\/p>\n\n<p><\/p>\n\n<h2 class=\"wp-block-heading\" id=\"first-whatsapp-message-using-curl\">WhatsApp API ve PHP kullanarak \u015fablon g\u00f6nderme  <\/h2>\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'name' =&gt; 'hello_world',\n'language' =&gt; 'en_us',\n'header' =&gt; '',\n'body' =&gt; '',\n'buttons' =&gt; '',\n'priority' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/template\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n<\/div>\n<\/div>\n\n<h2 class=\"wp-block-heading\">WhatsApp API ve PHP kullanarak metin mesaj\u0131 g\u00f6nderme  <\/h2>\n\n<p><\/p>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'body' =&gt; 'WhatsApp API on alvochat.com works good',\n'priority' =&gt; '',\n'preview_url' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/chat\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">Resim g\u00f6nder<\/h2>\n\n<p><\/p>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'image' =&gt; 'https:\/\/alvochat-example.s3-accelerate.amazonaws.com\/image\/1.jpeg',\n'caption' =&gt; 'image caption',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/image\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">Ses g\u00f6nder<\/h2>\n\n<p><\/p>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'audio' =&gt; 'https:\/\/alvochat-example.s3-accelerate.amazonaws.com\/audio\/1.mp3',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/audio\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">Video g\u00f6nder<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'video' =&gt; 'https:\/\/alvochat-example.s3-accelerate.amazonaws.com\/video\/1.mp4',\n'caption' =&gt; 'video caption',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/video\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">Belge g\u00f6nder  <\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'document' =&gt; 'https:\/\/alvochat-example.s3-accelerate.amazonaws.com\/document\/1.pdf',\n'filename' =&gt; '',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/document\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">\u00c7\u0131kartma g\u00f6nder<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'sticker' =&gt; 'https:\/\/alvochat-example.s3-accelerate.amazonaws.com\/sticker\/1.webp',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/sticker\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">\u0130leti\u015fim G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'contact' =&gt; '',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/contact\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">Konum G\u00f6nder<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'lat' =&gt; '37.484296',\n'lng' =&gt; '-122.148703',\n'address' =&gt; 'Menlo Park, California, United States',\n'name' =&gt; 'Meta Headquarters',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/location\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">Liste g\u00f6nder  <\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'header' =&gt; 'header',\n'body' =&gt; ' please select one of the following options',\n'footer' =&gt; 'footer',\n'button' =&gt; 'options',\n'sections' =&gt; 'option_1,option_2,option_3',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/list\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<p><\/p>\n\n<h2 class=\"wp-block-heading\">G\u00f6nder d\u00fc\u011fmesi  <\/h2>\n\n<p><\/p>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'header' =&gt; 'header',\n'body' =&gt; ' please select one of the following options',\n'footer' =&gt; 'footer',\n'buttons' =&gt; 'option_1,option_2,option_3',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/button\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<p><\/p>\n\n<h2 class=\"wp-block-heading\">\u00dcr\u00fcn g\u00f6nder  <\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'header' =&gt; 'header',\n'body' =&gt; 'Hi , check out our new products',\n'footer' =&gt; 'footer',\n'catalog_id' =&gt; '',\n'product' =&gt; '',\n'priority' =&gt; '',\n'message_id' =&gt; ''\n);\n$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/api.alvochat.com\/instance1199\/messages\/product\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 30,\n  CURLOPT_SSL_VERIFYHOST =&gt; 0,\n  CURLOPT_SSL_VERIFYPEER =&gt; 0,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; http_build_query($params),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"content-type: application\/x-www-form-urlencoded\"\n  ),\n));\n\n$response = curl_exec($curl);\n$err = curl_error($curl);\n\ncurl_close($curl);\n\nif ($err) {\n  echo \"cURL Error #:\" . $err;\n} else {\n  echo $response;\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">HTTP Request Lib kullanarak PHP ile metin mesaj\u0131 g\u00f6nderme<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\n\nrequire_once 'HTTP\/Request2.php';\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'body' =&gt; 'WhatsApp API on alvochat.com works good',\n'priority' =&gt; '',\n'preview_url' =&gt; '',\n'message_id' =&gt; ''\n);\n\n$request = new HTTP_Request2();\n\n$request-&gt;setUrl('https:\/\/api.alvochat.com\/instance1199\/messages\/chat');\n$request-&gt;setMethod(HTTP_Request2::METHOD_POST);\n$request-&gt;setConfig(array(\n  'follow_redirects' =&gt; TRUE\n));\n$request-&gt;setHeader(array(\n  'Content-Type' =&gt; 'application\/x-www-form-urlencoded'\n));\n$request-&gt;addPostParameter($params);\ntry {\n  $response = $request-&gt;send();\n  if ($response-&gt;getStatus() == 200) {\n    echo $response-&gt;getBody();\n  }\n  else {\n    echo 'Unexpected HTTP status: ' . $response-&gt;getStatus() . ' ' .\n    $response-&gt;getReasonPhrase();\n  }\n}\ncatch(HTTP_Request2_Exception $e) {\n  echo 'Error: ' . $e-&gt;getMessage();\n}<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\">Guzzle Lib kullanarak PHP ile metin mesaj\u0131 g\u00f6nderme<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"php\" class=\"EnlighterJSRAW\">&lt;?php\nrequire 'vendor\/autoload.php';\n\nuse GuzzleHttp\\Client;\nuse GuzzleHttp\\Exception\\RequestException;\nuse GuzzleHttp\\Psr7\\Request;\n\n$params=array(\n'token' =&gt; 'YourToken',\n'to' =&gt; '16315555555',\n'body' =&gt; 'WhatsApp API on alvochat.com works good',\n'priority' =&gt; '',\n'preview_url' =&gt; '',\n'message_id' =&gt; ''\n);\n\n$client = new Client();\n$headers = &#091;\n  'Content-Type' =&gt; 'application\/x-www-form-urlencoded'\n];\n$options = &#091;'form_params' =&gt;$params ];\n$request = new Request('POST', 'https:\/\/api.alvochat.com\/instance1199\/messages\/chat', $headers);\n$res = $client-&gt;sendAsync($request, $options)-&gt;wait();\necho $res-&gt;getBody();<\/code><\/code><\/pre>\n\n<p><\/p>\n\n<p>Whatsapp API Dok\u00fcmantasyonunun tamam\u0131n\u0131 <a href=\"https:\/\/alvochat.com\/docs\/\" data-type=\"URL\" data-id=\"https:\/\/alvochat.com\/docs\/\" target=\"_blank\" rel=\"noreferrer noopener\">burada<\/a> g\u00f6rebilirsiniz.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Giri\u015f Bu kod par\u00e7ac\u0131\u011f\u0131nda, PHP kullanarak bir WhatsApp API&#8217;sinin nas\u0131l g\u00f6nderilece\u011fini, bir metin mesaj\u0131, WhatsApp &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"PHP Kullanarak WhatsApp API Nas\u0131l G\u00f6nderilir\" class=\"read-more button\" href=\"https:\/\/alvochat.com\/blog\/tr\/php-kullanarak-whatsapp-api-nasil-gonderilir\/#more-1053\" aria-label=\"Read more about PHP Kullanarak WhatsApp API Nas\u0131l G\u00f6nderilir\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":796,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"%title% | %currentyear%","rank_math_description":"Bu kod par\u00e7ac\u0131\u011f\u0131nda, php kullanarak bir WhatsApp API'sini nas\u0131l g\u00f6nderece\u011finizi, bir metin mesaj\u0131 g\u00f6ndermeyi, \u015eablonlar, medya, d\u00fc\u011fmeler, listeler, \u00fcr\u00fcnler\n","rank_math_focus_keyword":"PHP,WhatsApp API","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[109,110],"tags":[112,174,111],"class_list":["post-1053","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ogreticiler","category-whatsappapi-tr","tag-ogreticiler","tag-php-tr","tag-whatsapp-api-tr","infinite-scroll-item","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","no-featured-image-padding"],"jetpack_featured_media_url":"https:\/\/alvochat.com\/blog\/wp-content\/uploads\/2022\/11\/WhatsApp-API-PHP.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/posts\/1053","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/comments?post=1053"}],"version-history":[{"count":4,"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/posts\/1053\/revisions"}],"predecessor-version":[{"id":1249,"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/posts\/1053\/revisions\/1249"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/media\/796"}],"wp:attachment":[{"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/media?parent=1053"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/categories?post=1053"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/alvochat.com\/blog\/tr\/wp-json\/wp\/v2\/tags?post=1053"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}