I updated the libraries on my Xamarin Android application, and I get the following error: com.google.android.gms.internal.ads.zza is defined multiple times: obj\Debug\120\lp\107\jl\bin\classes.jar:com/google/android/gms/internal/ads/zza.class, obj\Debug\120\lp\116\jl\bin\classes.jar:com/google/android/gms/internal/ads/zza.class

Here are the libraries that collide based on the manifest files found in these folders:

  • com.google.android.gms.gass -> Xamarin.GooglePlayServices.Gass version 120.0.0.7
  • com.google.android.gms.ads.impl -> I assume it's Xamarin.GooglePlayServices.Ads version 121.3.0

Is there any thoughts how can I overcome this issue? My app does not build. I tried many version combinations, none of them helped.

I tried many version combinations, none of them helped.

We are using an integration with whatsapp business API and it is working great, but we need to check if we have a new message or if the user have replied, we try it to use the whatsapp business app, but we can't access to the app and it seems like that whatsapp doesn't allow to use the App and API with the same number, then is there any way to check the messages like an app or dashboard?

I have been investigating in internet but I cannot find any solutions for that

When doing an api call, I'm getting the response 400 with reason

"Unsupported post request. Object with ID '###############' does not exist, cannot be loaded due to missing permissions, or does not support this operation".

Though the permissions for whatsapp_business_messaging and whatsapp_business_management was given and token was generated for an admin user.

Is it that permanent tokens does not work on apps with apps in development mode? Because the temporary token was working with the same code and messages were being sent correctly.

I'm trying this for Odoo 16 in python 3.8 `

recipient_phone_number = rec.owner_id.partner_id.mobile url = f"https://graph.facebook.com/v15.0/{phone_number_id}/messages" headers = {     "Authorization": f"Bearer {access_token}",     'Content-Type': 'application/json' } # Code for sending text message in whatsapp. text_data = {     'messaging_product': 'whatsapp',     "recipient_type": "individual",     'to': recipient_phone_number,     'type': 'text',     "text": {         "preview_url": False,         "body": "Dear %s, this message is to remind that document %s will expire on %s."                 % (rec.owner_id.name, rec.name, rec.expiry_date)     } } text_response = requests.post(     url,     headers=headers,     data=json.dumps(text_data) ) 

`

I am Using Whatsapp Media API to get Image send from user to business number using webhooks and I also get the Image ID and URL and Image as well in Postman but when I use that curl request made from Postman it always shows Facebook error:

Sorry, something went wrong. We're working on it and we'll get it fixed as soon as we can.

But its working fine in Postman what am I doing wrong?

<?php $ua = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.16 (KHTML, like Gecko) \  Chrome/24.0.1304.0 Safari/537.16'; $curl = curl_init(); curl_setopt_array($curl, array(   CURLOPT_URL => 'Image_URL_from_Api',   CURLOPT_USERAGENT => $ua,   CURLOPT_RETURNTRANSFER => true,   CURLOPT_ENCODING => '',   CURLOPT_MAXREDIRS => 10,   CURLOPT_TIMEOUT => 0,   CURLOPT_FOLLOWLOCATION => true,   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,   CURLOPT_CUSTOMREQUEST => 'GET',   CURLOPT_SSL_VERIFYPEER => false,   CURLOPT_HTTPHEADER => array(     'Authorization: Bearer My_Token'   ), )); $response = curl_exec($curl); curl_close($curl); echo $response; 

I am trying to create a connection between our WhatsApp Business account and our website where we gather all messages sent to our business on different channels (through our own app, text, WhatsApp, ...).

I've followed this tutorial (https://developers.facebook.com/docs/whatsapp/cloud-api/get-started) and have everything set up: our WhatsApp Business is working correctly, I've added a Meta App and I've set up the webhooks with a connection to my node.js backend. When I click Test next to the "Messaging" webhook, I receive the message on my node.js backend and website. So I know this side is working as it should.

I've then used the Graph API to subscribe my Meta app to the messages with the business id of the WhatsApp with the correct permissions. When checking the subscribed apps with the {business_id}/subscribed_apps endpoint, I can see my Meta app. So I believe everything is set up correctly. My Meta app is also set to "production".

However, when I try to send a message with my personal WhatsApp to my business WhatsApp, I receive nothing on the webhook. I checked the logs on my server and nothing is being received, so I know it's not an issue in my node.js backend.

Is there something else I need to do to make this work? Does the Meta app need to be verified to use the webhook in production? If so, how can I do this? The guide for verification says I need a platform and login insctructions, but the Meta app is really only a webhook without an interface.

Thanks in advance.