Posts under category Meta & Facebook

I'm experiencing an issue with WhatsApp webhook messages events not being triggered, despite other webhook tests working correctly (like flows \ security \ account_alerts.

Environment:

  • Using WhatsApp Business API
  • Tested on Facebook's webhook test page
  • Facebook app in Live mode

Problem Details:

  • All webhook tests received successfully EXCEPT message webhooks
  • No webhooks are triggered when:
    1. Sending messages from the Facebook webhook test page
    2. Sending messages directly to the registered WhatsApp number

Code/Configuration Attempts:

// Simplified webhook handler (example) app.post('/webhook', (req, res) => {   const body = req.body;   console.log('Webhook received:', body);      if (body.entry && body.entry[0].changes) {     // Webhook processing logic   }      res.sendStatus(200); }); 

I'm building a webapp to help house hunters find the house. I was trying to read feeds of public Meta groups related to rentals.

From what I understand the group admin has to install my app and give me the access token. But I got to know that groups API is deprecated from v19.0.

Is there any official alternate or workaround that you guys know or are using in your own use case? Thanks.

We're sorry you're thinking of leaving us. To cancel Sky TV, you need to give us 31 days' notice, contact support:-96999-48263..which can't end before your minimum term finishes unless you're within your cooling off period. Please don't cancel your Direct Debit or any other ongoing payment with us, as further payments may still be due.

I am currently working on integrating Meta Audience Network into the bidding section of my existing Google AdMob account. However, when adding Meta under Ad sources > Bidding, it prompts me to sign the partnership agreement. When I click the button, I am redirected to the Meta Monetization Manager dashboard, but no further progress can be made from there. How can I complete the signing of the partnership agreement and move to the next step, "Acknowledge bidding agreement"?

From Facebook document: https://www.facebook.com/business/help/652738434773716 "You can have up to 5,000 ads. Only 1,000 of these 5,000 ads can use dynamic creative."

Some my adaccounts have an issue "Your account xxxx has reached the maximum number of dynamic creative ads allowed (1,000). Please delete some of your older ads."

How can I count ads that are using "dynamic creative"? Note: I can count ads by

        $adAccount = new AdAccount($adAccountId);         $cursor = $adAccount->getAds(             params: [                 'date_preset' => 'today',                 'summary' => 'total_count',                 'limit' => 1,             ]         ); 

It is great if I can find an API to get numbers ads use dynamic creative belong to each adaccount