This article shows you how to send a message to a WhatsApp group in Microsoft’s .net language: C# using VIsual Studio 2022.
If you are using Visual Studio 2019, please read this tutorial instead.
You MUST obtain the secret gateway number by signing up for a Forever Green account before you can send a message to a WhatsApp group. Instructions are available on the official site.
To send a WhatsApp group message in C#, do this:
- Create a new group with a unique name. The API won’t work if it’s not unique.
-
- Add the secret gateway to the group.
-
- Say “Hi” to the group to let the gateway recognize the new group.
- Copy the following source code to the main class in your Console Application in Visual Studio.
- Customize the TODO lines in the C# program:
- Specify your gateway instance ID on line 10.
- Specify your Client ID and Client secret on lines 11 and 12.
- Specify the group admin number (i.e. your WhatsApp number including the country code) on line 20.
- Specify the group name (e.g. Happy Club) on line 21.
- Specify the content of the message on line 22.
- Build and run the application in Visual Studio.
As mentioned at the beginning of this tutorial, you will need a trial account to call the above API. Go sign up now.
Happy coding :)