Posts under category Meta & Facebook

While doing setup for WhatsApp Business Platform API, the business profile is selected but when clicked on Continue for further setup below error is received 'Onboarding Failure You have been temporarily blocked from performing this action.'
And before this error earlier received below error 'Onboarding Failure Please Reply in some time or contact support to get issue fixed'

I'm working on an ASP.NET MVC app using SignalR that implements a WhatsApp Chat, where the user can send a message from the app to a WhatsApp number, and from there it can be answered, thus showing the response on the page. So far, I've got to separate the messages sent from the WhatsApp account to each tab on different browsers, as I'm using the SignalR connectionID, given that each time a page is loaded, a new connection is established.

From the client, I send the messages as follows

connection.invoke("SendMessage", user, message).catch(function (err) {     return console.error(err.toString()); }); 

and from the server, I send the message to all clients as follows

public async Task SendMessage(string user, string message) {     await Clients.All.SendAsync("ReceiveMessage", user, message); } 

To a particular client, I send a message with the connectionID

await _hubContext.Clients.Client(idConexion).SendAsync("ReceiveMessage", "Message:", textMessage[0].Text.Body);

What I'd like is that the same browser is considered as only one connection, no matter how many tabs are opened. I know from the documentation and other StackOverflow questions that each tab opened is a different connection, but I just need to broadcast the same message to all active tabs of a browser. My current logic is that messages are sent to a particular connection, using the unique WAMID from each message from the WhatsApp Business API.

Hello, I'm trying to use the /me/leadgen_forms route but it's giving me the error "Requires pages_manage_ads permission to manage the object, the app may have the permission but in order to use this API, the app needs to be owned by a verified business" on specific pages, there are pages that work normally, but on some it gives me this error, my application already has the permission mentioned and my business is verified (I use it to send the official WhatsApp api)

Dear Meta Support Team,
I am writing to urgently address a critical issue with the Data Use Checkup for my app, which integrates Facebook login. Despite numerous attempts and reaching out through your community forums, there has been no assistance or response from your team. My application is now restricted, preventing user logins and significantly disrupting my business.
The process has been consistently buggy, displaying an error message "Something went wrong. We're working on getting it fixed as soon as we can" every time I attempt to initiate the checkup. This is unacceptable, especially given the tight deadline imposed, which has now passed, further compounding the issue.
Immediate attention and resolution are imperative. The lack of support and the malfunctioning system are not only frustrating but also damaging to my business. I require direct intervention to resolve these checkup issues and restore functionality as soon as possible.
Please treat this matter with the urgency it demands.
Regards,

For approximately two weeks now, our webhook has ceased to send us messages.
Despite successful authentication, no messages are being echoed through the webhook. Interestingly, when testing with Postman, I am able to retrieve logs, indicating that the issue may be specific to interactions with Meta.