hey weird scrapping behavior to some pages of my site not sure why but scrapping not working well for some of my pages
works well example: https://www.snakes.co.il/sales-board/
but for some reason its not scrapping open graph data for other pages, it use to work well few weeks ago getting this error: Bad Response Code URL returned a bad HTTP response code.
not working example: https://www.snakes.co.il/sales-board/ad/reptiles-terrarium-122/trrywm-zkwkyt-ypyph-3486
not sure what happened to the page it has all of the og meta tags needed and it use to work!
please advice ?

Hello everyone,
I'm currently working on a project where I need to fetch all ads along with their comments.
However, I'm facing issues retrieving the comments. I've tried using the endpoint /ads_posts with the query parameter fields={comments}.
I also experimented with adding &include_inline_create=true to potentially include comments in the response, but that didn't work either:
Despite these attempts, I'm unable to see any of the comments in the response. Has anyone encountered a similar issue or have suggestions on what I might be doing wrong? Any insights or alternative approaches to retrieve both ads and their associated comments would be greatly appreciated.
Thank you in advance for your help!

Problem: I have an appointment booking widget (non-iframe) embeded into a webpage. How do I ensure GA4 is picking up on these form submissions?

Additionally, how does the form submission correlate up to the success of the Google Ad?

I have embeded this javascript in the form to ensure it fires data to GA4, but marketers are still telling me the conversions are not appearing with a traffic source from the UTM.


async function triggerConversionEvent() {

        const measurementId = 'measurementId'; // Replace with your GA4 Measurement ID         const conversionEventName = 'self_booked_appointment'; // Replace with your conversion event name         const clientId = 'booking_engine'; // Replace with a unique client ID (can be randomly generated)         const url = `https://www.google-analytics.com/mp/collect?measurement_id=${measurementId}`;         const body = {             client_id: clientId,             events: [                 {                     name: 'conversion',                     params: {                         event_name: conversionEventName,                     }                 }             ]         };         try {             const response = await fetch(url, {                 method: 'POST',                 headers: {                     'Content-Type': 'application/json'                 },                 body: JSON.stringify(body)             });             if (response.ok) {                 console.log('Conversion event triggered successfully');             } else {                 console.error('Failed to trigger conversion event');             }         } catch (error) {             console.error('Error triggering conversion event:', error);         }     } 

I intent to create a website for my clients, called eg: xxxx.com where they will login into that website, and will be able to read a whatsapp QRCODE and connect to there whatsapps numbers and administrate there clients thru my website, like answer clients, transfer to other users from these user account and so on. Each client should be able to have multiple numbers connected within there account.

So let's say, client Joe purshases plan gold in my website, he will get a login and password, after that, Joe will log into xxxx.com and in section 'CONNECTION' he will be able to read a QRCODE and 'connect' his whatsapp numbers . Yes, he should be able to connect many numbers if he wishes to ! That way he will have many 'Active Connections'. Can I do that using Twilio ? Will he need to verify every single number on facebook platform ? Or that was only for me, the owner of twilio`s account ?

Please, make an easy answer so I can understand it, I'm new to all these , show me the path, I`ll use PHP/websockets along my journey !! Is these 100% possible ?

Thank you very much !!