Posts tagged with whatsapp-cloud-api

In the page setup on Meta For Developers it says that the account (test number) does not exist in the Cloud API. I was previously able to run tests normally with the provided test number (receiving messages on my personal phone), but since yesterday afternoon, I've been getting some message like:

"Failed to send message. The account does not exist in the Cloud API. Use the /register API to create an account first."

Making the request in Postman, I have the following response:

"error": {     "message": "The account is not registered",     "type": "OAuthException",     "code": 133010,     "error_subcode": 2593006,     "is_transient": false,     "error_user_title": "The account does not exist",     "error_user_msg": "The account does not exist in the Cloud API. Use /register API to create an account first.",     "fbtrace_id": "A6fN7xoCSrj2t1dW_Qvv5d0" } 

In my Flutter project (VSCode), the Debug Console also shows:

"flutter: {error: {message: The account is not registered, type: OAuthException, code: 133010, error_subcode: 2593006, is_transient: false,..."

Despite my best efforts, I've reached a dead end... help me please.

I've tried everything I can think of: checking all the API settings, sending messages to different numbers, reviewing the documentation, and searching the internet for similar issues. But nothing seems to work. I just need to get the tests running again.

I am integrating WhatsApp Cloud API into my chat application. During the process, I've already integrated it, but I want to restrict people to add WhatsApp Business phone number into Group Chats.

It is possible to update the settings through WhatsApp itself, in order to use WhatsApp Cloud API, that number must not be registered as WhatsApp account. Therefore I can't edit through WhatsApp.

I know, I have to edit this via Business Portfolio, but I couldn't find it. I did multiple research, didn't find anything useful.

If somebody know, how to achieve this, please let me know. Thanks in advance.

I am building a e-commerce platform in WhatsApp using WhatsApp Business API. I created and connected the catalog using Facebook commerce manager. But I was not able to display the categorized collection of my products. It is displaying in WhatsApp catalog like a whole list. I need to categorize it.

I tried creating sets/collections in commerce manager but couldn't find a way to reflect them in WhatsApp catalog.

I loaded the available templates using Whatsapp Business api which provided the below given jason response:

{ "name": "test_template", "components": [ { "type": "HEADER", "format": "IMAGE", "example": { "header_handle": [ "https://scontent.whatsapp.net/v/t61.29466-34/431629114_727445832925663_5828608310984645746_n.jpg?ccb=1-7&_nc_sid=8b1bef&_nc_ohc=HEd-nvn_anUAb5k8vBC&_nc_ht=scontent.whatsapp.net&edm=AH51TzQEAAAA&oh=01_ASDkfU6GazAFTOrZ87IWRqi9UQiYqUw-EIMDm05OQc2dsw&oe=6645DC3E" ] } }, { "type": "BODY", "text": "Hello {{1}},\n\nGet Flat 50% OFF on our Newly launched Lean mass Gainer\n\n{{2}} and {{3}}", "example": { "body_text": [ [ "Pintu", "Till Today", "Expires Soon" ] ] } }, { "type": "FOOTER", "text": "proquestnutrition.com" }, { "type": "BUTTONS", "buttons": [ { "type": "QUICK_REPLY", "text": "Hello Sir" }, { "type": "URL", "text": "Visit", "url": "http://proquestnutrition.com/" }, { "type": "PHONE_NUMBER", "text": "Call Now", "phone_number": "+919354231262" } ] } ], "language": "en_US", "status": "APPROVED", "category": "MARKETING", "id": "727445829592330" } 

As it shows my Header format is Image and it contain header handle. Now how can I view the image i had provided to Facebook while creating this template or send template message.

I have tried getting the image my ways like providing the bearer token as authorization, etc. Please help

Hello fellow developers,

I hope you're all doing well. I am currently setting up a bot (LLM agent) using WhatsApp API and a Flask application hosted on Azure.

As recommended in Azure's tutorial, I have a startup.txt with the following command

gunicorn --bind=0.0.0.0 --timeout 600 --chdir src/whatsapp_agent/whatsapp_agent run:app

which runs locally without an issue.

Once it is deployed on Azure, however, the webhook setting from WhatsApp API (Edit Whatsapp Business Account subscription) returns the following error:

The URL couldn't be validated. Callback verification failed with the following errors: curl_errno = 28; curl_error = Operation timed out after 6000 milliseconds with 0 bytes received; HTTP Status Code = 200; HTTP Message = Connection established

Did anyone run into a similar issue and managed to solve it?

Many thanks!