Posts under category Facebook WhatsApp Business API

I'm trying to create a Facebook APP to use the WhatsApp Business Cloud API. Following this guide: https://developers.facebook.com/docs/whatsapp/cloud-api/get-started

It says: "From the App Dashboard, click on the app you would like to connect to WhatsApp. Scroll down to find the "WhatsApp" product and click Set up."

But there is no WhatsApp product at all. There are other products, but only WhatsApp is missing.

Does anyone know why it is like this?

Attached the image of the whole window. Screen Capture

While working on WhatsApp Business Cloud API, I have to send an Image through WhatsApp. When I send that image I am getting a response as a sha256 base64 string and an imageId. I want to retrieve back that image using these credentials. I'm getting a URL when I make a get request with that image id. That URL is actually broken/invalid and I'm not getting the image back.

Response of the request is given below :

"messages": [               {                 "from": "918******6",                 "id": "wamid.HBgMOT*********EA",                 "timestamp": "1655978686",                 "type": "image",                 "image": {                   "mime_type": "image/jpeg",                   "sha256": "ian**********jM4k=",                   "id": "4**********7"                 }               }             ] 

I am integrating whatsapp graph api/whatsapp cloud api in my webapplication/crm. where I need to send text message or document to the customers and return response from the customers. which will be actioned from my customized crm. and i also want to access whatsapp business app with the same phone no which i am actually using now. So is it possible to access the same for both situation with a single phone No.

I am sending message from Facebook whatsapp api to my number for testing. Message is sent from php but not recieved on mobile. Did I must register business on facebook?

{"messaging_product":"whatsapp","contacts":[{"input":"923040165804","wa_id":"923040165804"}],"messages":[{"id":"wamid.HBgMOTIzMDQwMTY1ODA0FQIAERgSOEM3RDJDRDMyMkFENkIzMTgyAA=="}]}

this php code that I am using.

        $curl = curl_init();         curl_setopt_array($curl, array(             CURLOPT_URL => 'https://graph.facebook.com/v13.0/********/messages/',             CURLOPT_RETURNTRANSFER => true,             CURLOPT_ENCODING => '',             CURLOPT_MAXREDIRS => 10,             CURLOPT_TIMEOUT => 0,             CURLOPT_FOLLOWLOCATION => true,             CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,             CURLOPT_CUSTOMREQUEST => 'POST',             CURLOPT_POSTFIELDS =>json_encode(array("to"=> $number, "messaging_product" => 'whatsapp', "recipient_type" => 'individual',"type"=>"text", 'text'=> array('body'=>'hello_wo332233rld','preview_url'=>'false'))),             CURLOPT_HTTPHEADER => array(                 'Authorization: Bearer '.$chatApiToken,                 'Content-Type: application/json'             ),         ));         $response = curl_exec($curl);         curl_close($curl);         echo $response;