[FBAudienceNetworkAds initializeWithSettings:nil completionHandler:nil];
[FBAdSettings setAdvertiserTrackingEnabled:YES];
[FBAdSettings setLogLevel:FBAdLogLevelLog];
[FBAdSettings addTestDevice:[FBAdSettings testDeviceHash]];
It tells you "no fill" in any case, and so does dome, which I downloaded from github

I recently inherited a codebase and am having issues related to publishing an Image Ad when using a custom audience. I get the following error: There was something wrong with your request! Please contact support. Invalid parameter You must certify that the DFCAs used in the campaign have not been created using discriminating data before publishing.

We did not find any problems with the quality review standards. We need to know more detailed reasons for rejection, such as whether it cannot be opened or there are problems with image quality or operation, or whether this type of gameplay is saturated. Please help us. Attached is the game screen recording Related Apps Makeup Beauty(998015952174687)

Hi,
So, i have been trying to validate incoming whatsapp webhooks payload from meta by following the guide in this link
https://developers.facebook.com/docs/graph-api/webhooks/getting-started/#validate-payloads
I have figured on how to validate message statuts update & incoming message webhook like text, image, video, etc. But i am stuck on validating webhook from Account Update or Template Status Update.
Below is the code i am using
const crypto = require('crypto'); const express = require('express');
const app = express(); app.use(express.json());
const APP_SECRET = "YOUR_APP_SECRET";
function escapeUnicode(str) { return str.replace(/[\u0080-\uFFFF]/g, function (ch) { return '\u' + ('0000' + ch.charCodeAt(0).toString(16)).slice(-4); }).replace(/\//g, '\/'); // Escape / as \/ }
function verifySignature(req) { const signature = req.headers['x-hub-signature-256'];
if (!signature) return false;

let payload = JSON.stringify(req.body);

payload = escapeUnicode(payload);

const hash = `sha256=${crypto.createHmac('sha256', APP_SECRET).update(payload).digest('hex')}`;

console.log({ payload, signature, hash })

return crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(hash));
}
app.post('/webhooks', (req, res) => { if (!verifySignature(req)) { console.log("Invalid signature") return res.status(403).send("Invalid signature"); }
console.log("Received valid webhook event:", req.body);
res.sendStatus(200);
});
app.listen(3000, () => console.log("Webhook listening on port 3000"));