{"id":2644,"date":"2022-05-03T01:55:27","date_gmt":"2022-05-03T01:55:27","guid":{"rendered":"https:\/\/blog.ultramsg.com\/hantar-whatsapp-api-message-menggunakan-ocaml\/"},"modified":"2022-05-03T01:55:27","modified_gmt":"2022-05-03T01:55:27","slug":"hantar-whatsapp-api-message-menggunakan-ocaml","status":"publish","type":"post","link":"https:\/\/blog.ultramsg.com\/ms\/hantar-whatsapp-api-message-menggunakan-ocaml\/","title":{"rendered":"Cara Menghantar API WhatsApp dengan OCaml"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"introduction\">pengenalan<\/h2>\n\n<p>Dalam tutorial ini, kami akan mencipta contoh mudah untuk menghantar mesej melalui API WhatsApp menggunakan OCaml.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"first-whatsapp-api-message-using-objective-c\">Mesej API WhatsApp Pertama Menggunakan OCaml<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/chat\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;body=WhatsApp API on UltraMsg.com works good&amp;priority=10&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-image\">Hantar Imej<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/image\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;image=https:\/\/file-example.s3-accelerate.amazonaws.com\/images\/test.jpg&amp;caption=image Caption&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-document\">Hantar Dokumen<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/document\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;filename=hello.pdf&amp;document=https:\/\/file-example.s3-accelerate.amazonaws.com\/documents\/cv.pdf&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-audio\">Hantar Audio<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/audio\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;audio=https:\/\/file-example.s3-accelerate.amazonaws.com\/audio\/2.mp3&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-voice\">Hantar Suara<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/voice\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;audio=https:\/\/file-example.s3-accelerate.amazonaws.com\/voice\/oog_example.ogg&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-video\">Hantar Video<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/video\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;video=https:\/\/file-example.s3-accelerate.amazonaws.com\/video\/test.mp4&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-link\">Hantar Pautan<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/link\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;link=https:\/\/en.wikipedia.org\/wiki\/COVID-19&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-contact\">Hantar Kenalan<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/contact\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;contact=14000000001@c.us&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-location\">Hantar Lokasi<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/location\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;address=ABC company \\n Sixth floor , office 38&amp;lat=25.197197&amp;lng=55.2721877&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-vcard\">Hantar Vcard<br\/><\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">open Cohttp_lwt_unix\nopen Cohttp\nopen Lwt\n\nlet uri = Uri.of_string \"https:\/\/api.ultramsg.com\/instance1150\/messages\/vcard\" in\nlet body = Cohttp_lwt_body.of_string \"token=token_here&amp;to=966550883606&amp;vcard= BEGIN:VCARD\\nVERSION:3.0\\nN:lastname;firstname\\nFN:firstname lastname\\nTEL;TYPE=CELL;waid=14000000001:14000000002\\nNICKNAME:nickname\\nBDAY:01.01.1987\\nX-GENDER:M\\nNOTE:note\\nADR;TYPE=home:;;;;;;\\nADR;TYPE=work_:;;;;;;\\nEND:VCARD&amp;referenceId=\" in\n\nClient.call ~body `POST uri\n&gt;&gt;= fun (res, body_stream) -&gt;\n  (* Do stuff with the result *)<\/code><\/code><\/pre>\n\n<p>akhirnya, anda boleh melihat Dokumentasi dan <a href=\"https:\/\/blog.ultramsg.com\/whatsapp-api-by-ultramsg-faq\/\" data-type=\"URL\" data-id=\"https:\/\/blog.ultramsg.com\/whatsapp-api-by-ultramsg-faq\/\">Soalan Lazim<\/a> <a href=\"https:\/\/docs.ultramsg.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">API Whatsapp<\/a> Penuh .<\/p>\n","protected":false},"excerpt":{"rendered":"<p>pengenalan Dalam tutorial ini, kami akan mencipta contoh mudah untuk menghantar mesej melalui API WhatsApp &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Cara Menghantar API WhatsApp dengan OCaml\" class=\"read-more button\" href=\"https:\/\/blog.ultramsg.com\/ms\/hantar-whatsapp-api-message-menggunakan-ocaml\/#more-2644\" aria-label=\"Read more about Cara Menghantar API WhatsApp dengan OCaml\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":2577,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[245],"tags":[249,260],"class_list":["post-2644","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-api-whatsapp-ms","tag-api-whatsapp-ms","tag-ocaml-ms","infinite-scroll-item","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-25","no-featured-image-padding"],"_links":{"self":[{"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/posts\/2644","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/comments?post=2644"}],"version-history":[{"count":1,"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/posts\/2644\/revisions"}],"predecessor-version":[{"id":2645,"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/posts\/2644\/revisions\/2645"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/media\/2577"}],"wp:attachment":[{"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/media?parent=2644"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/categories?post=2644"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.ultramsg.com\/ms\/wp-json\/wp\/v2\/tags?post=2644"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}