Send Messages From My WhatsApp web to Another Number using C#.NET
Hi all...., Today we will discuss about sending messages through whatsapp web programmatically using c#.net. it is not a rocket science. Whatsapp providing many API for your business integration. but these apis are not free. they are providing api to use in web application. We are overriding their web link to send customized messages. follow these steps... 1. install whatsapp for desktop in your PC and set the account using QR code and your mobile. https://www.whatsapp.com/download 2. Open Visual Studio and create a simple windows application form. 3. Place 2 text boxes for number and message. 4. Insert button for calling function. 5. it will direct you to whatsapp web. CODE ================= create a function like this private void sendWhatsApp(string number,string message) { try { ...