One of my project , my security team asking me to share the whatsapp business api docker images hash values to promote docker images to our own docker repository.

These values i couldn't find in facebook whatsapp documentation .

After pulling the images i can get the hash values but security team wants to compare the downloaded one is the proper one or not .

  docker.whatsapp.biz/coreapp   docker.whatsapp.biz/web 

How can i access the whatsapp business api docker repository in internet ? Any lead ?

Problem: I can't figure out how, using the Node.js google-ads-api, to add a user to a Google Ads remarketing user list.

I can create the user list:

async createUserList() {     const mutation = await this.customer.userLists.create({         name: '<USERLIST_NAME>',         membership_life_span: 60,         membership_status: enums.UserListMembershipStatus.OPEN,         basic_user_list: {             actions: [{                 remarketing_action: '<REMARKETING_ACTION_RESOURCE_NAME>',             }]         }     })     console.log(`created userlist ${mutation.results[0]}`)     return mutation.results[0] } 

I'm still trying to read the Google Ads Api documentation to see if I'm misunderstanding the intended workflow with remarketing, but I do expect adding users to a user list programmatically to be a supported functionality.

I am trying to make a WhatsApp bot inspired by the functioning of Discord bots, the bot will work in WhatsApp groups.

I have looked up the official WhatsApp Business API but I am not sure that they will not approve my number as it is just a hobby project and not a proper "business".

There is an alternative though and that is the Twilio WhatsApp API. However, they provide you with a sandbox. I can interact with it in DMs but as the sandbox number is a business account, I cannot add it to a group like discord.

I intend to write a server in python or node.

Can anyone share a solution or workaround? Only if I could add the Twilio number to a group my problem will be solved. Though I am ready to use any other API/Solutions for this.

We just deploy on AWS Cloudformation an enterprise WhatsApp API following the next instructions:

AWS WhatsApp API

So all works normally, and the deploy finished correctly, the problem comes with the option "SSL Configuration", we understand that the API creates a self signed certificate so we get the error on the browsers because of that.

The documentation says that we need to upload a certificate authority, but do we need to get one from a third party to avoid this error?

We are a little bit lost, any advice will be nice.

I am trying to create a web application (backend is in PHP / Laravel), with this functionality

  1. user ads a valid gmail address
  2. system checks if the address is valid and if such a address is assigned to a Google Ads Account
  3. if true, system should "somehow" retrieve the customerId of the google ads account, or all of them if there are more than one accessible from the address
  4. system checks if the ads account is an MCC account step
  5. if so, system should list all of the customers the mcc account is "handling" ...

My question is - how do I do step 3?

The "input" data I have is the e-mail address, at this point I already know that it's valid, and the account has already given permission to my application to access google ads, I have everything properly configured, but

I have no clue HOW to do it. The official API documentation is not very helpful, just like the official PHP library which I'm using, it assumes that I KNOW the customerId (or the loginCustomerId in the case of MCC accounts).

Any clue how could I do it?