{"id":1290,"date":"2022-03-02T15:07:48","date_gmt":"2022-03-02T15:07:48","guid":{"rendered":"https:\/\/blog.ultramsg.com\/enviar-mensagem-whatsapp-api-usando-c-linguagem\/"},"modified":"2022-03-02T15:07:49","modified_gmt":"2022-03-02T15:07:49","slug":"enviar-mensagem-whatsapp-api-usando-c-linguagem","status":"publish","type":"post","link":"https:\/\/blog.ultramsg.com\/pt-br\/enviar-mensagem-whatsapp-api-usando-c-linguagem\/","title":{"rendered":"API do WhatsApp com linguagem de programa\u00e7\u00e3o C"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"introduction\">Introdu\u00e7\u00e3o<\/h2>\n\n<p>Neste tutorial, criaremos exemplos simples para enviar mensagens via API do WhatsApp usando C.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"first-whatsapp-api-message-using-c\">Primeira mensagem da API do WhatsApp usando C<\/h2>\n\n<pre class=\"wp-block-code\"><code><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/chat\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;body=WhatsApp API on UltraMsg.com works good&amp;priority=10&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-image\">Enviar imagem<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/image\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;image=https:\/\/file-example.s3-accelerate.amazonaws.com\/images\/test.jpg&amp;caption=image Caption&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-document\">Enviar documento<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/document\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;filename=hello.pdf&amp;document=https:\/\/file-example.s3-accelerate.amazonaws.com\/documents\/cv.pdf&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-audio\">Enviar \u00e1udio<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/audio\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;audio=https:\/\/file-example.s3-accelerate.amazonaws.com\/audio\/2.mp3&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-voice\">Enviar voz<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/voice\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;audio=https:\/\/file-example.s3-accelerate.amazonaws.com\/voice\/oog_example.ogg&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-video\">Enviar v\u00eddeo<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/video\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;video=https:\/\/file-example.s3-accelerate.amazonaws.com\/video\/test.mp4&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-link\">Enviar Link<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/link\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;link=https:\/\/en.wikipedia.org\/wiki\/COVID-19&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-contact\">Enviar contato<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/contact\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"token=token_here&amp;to=966550883606&amp;contact=14000000001@c.us&amp;referenceId=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-location\">Enviar localiza\u00e7\u00e3o<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/location\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"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=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"send-vcard\">Enviar Vcard<\/h2>\n\n<pre class=\"wp-block-preformatted\"><code data-enlighter-language=\"c\" class=\"EnlighterJSRAW\">CURL *hnd = curl_easy_init();\n\ncurl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \"POST\");\ncurl_easy_setopt(hnd, CURLOPT_URL, \"https:\/\/api.ultramsg.com\/instance1150\/messages\/vcard\");\n\nstruct curl_slist *headers = NULL;\nheaders = curl_slist_append(headers, \"content-type: application\/x-www-form-urlencoded\");\ncurl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);\n\ncurl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \"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=\");\n\nCURLcode ret = curl_easy_perform(hnd);<\/code><\/pre>\n\n<p>finalmente, voc\u00ea pode ver <a href=\"https:\/\/docs.ultramsg.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">a documenta\u00e7\u00e3o completa da API do Whatsapp<\/a> e as <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\/\">perguntas frequentes<\/a> .<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introdu\u00e7\u00e3o Neste tutorial, criaremos exemplos simples para enviar mensagens via API do WhatsApp usando C. &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"API do WhatsApp com linguagem de programa\u00e7\u00e3o C\" class=\"read-more button\" href=\"https:\/\/blog.ultramsg.com\/pt-br\/enviar-mensagem-whatsapp-api-usando-c-linguagem\/#more-1290\" aria-label=\"Read more about API do WhatsApp com linguagem de programa\u00e7\u00e3o C\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":1252,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[111],"tags":[112,123],"class_list":["post-1290","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-api-do-whatsapp","tag-api-do-whatsapp","tag-c-pt-br-2","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\/pt-br\/wp-json\/wp\/v2\/posts\/1290","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/comments?post=1290"}],"version-history":[{"count":1,"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/posts\/1290\/revisions"}],"predecessor-version":[{"id":1291,"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/posts\/1290\/revisions\/1291"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/media\/1252"}],"wp:attachment":[{"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/media?parent=1290"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/categories?post=1290"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.ultramsg.com\/pt-br\/wp-json\/wp\/v2\/tags?post=1290"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}