I want to use whatsapp in my app to send message to other phone. I have seen this public API for whatsapp on Github, here. But I dont find that API for iOS. So is that possible to use whatsapp in iOS app? And is that legal? And where can I find public API of whatsapp for iOS?
WhatsApp is a free, multiplatform messaging app that lets you make video and voice calls, send text messages, and more — all with just a Wi-Fi connection. With over 2 billion active users, WhatsApp is especially popular among friends and family who live in different countries and want to stay in touch.
Install the WhatsApp Business API Client — Install your API client. Once your client is working, you can update your application settings. Start using the client — Register your phone number with an API call to /account and send a test message with a call to /messages .
Users can chat with someone on WhatsApp without saving them as a contact by making use of WhatsApp's click to chat feature via an internet browser. WhatsApp is one of the most popular messaging services in the world and is used by millions of people.
yes, you can use the whatsapp for sending text/ images through you ios app. there are two ways to do so 1. URL scheme
NSURL *whatsappURL = [NSURL URLWithString:@"whatsapp://send?text=Hello%2C%20World!"];
if ([[UIApplication sharedApplication] canOpenURL: whatsappURL]) {
[[UIApplication sharedApplication] openURL: whatsappURL];
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With