B4A Question WhatsAPP - not sending text but asking to push a button - IamTrying (first post)    Feb 28, 2018 WhatsAPP. But they want human operator and refuse the way i needed. So its a fail approach... i have figured out how i will hack this i have few alternatives except WhatsAPP.
- Asterisk (Voice call from... B4A Code Snippet Whatsapp Send Function - Hamied Abou Hulaikah    Sep 22, 2020   (13 reactions) I hope this help someone:
Sub whatsappSend(mobile as string,msg as string)
Dim sendIntent...("jid",mobile & "@s.whatsapp.net")
sendIntent.Action=sendIntent.ACTION_SEND
sendIntent.SetPackage("com.whatsapp")
sendIntent.SetType("text/plain")
sendIntent.PutExtra("android.intent.extra.TEXT",msg)
StartActivity(sendIntent)
End... B4A Question Sending a string text in whatsapp to a contact directly - Erel (first post)    Mar 15, 2018   (1 reaction) It is not possible. You cannot send key events or touch events to other apps.... B4A Question Using intent to send text to whatsapp, viber, skype, facebook, SMS default app? - AlbertMHaim (first post)    Apr 9, 2014 Try this:
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "tel:1231231234")
i.SetComponent(&... B4A Question WhatsApp Intent - MarcoRome    Oct 7, 2014 Hi all. If you send message with intent / WhatsApp write this code: Dim i As Intent i.Initialize(i.ACTION_SEND,"") i.SetType("text/plain") i.SetComponent("com.whatsapp...("sms_body", smsText); i.setPackage("com.whatsapp"); startActivity(i); this is website: http://stackoverflow.com/questions/19081654/send-text-to-specific-contact-whatsapp i Try in...(i.ACTION_SEND, numero) i.SetType("text/plain") i.SetComponent("com.whatsapp"... B4A Code Snippet WhatsApp: Send Message to specific phone number - Star-Dust    Nov 25, 2017   (13 reactions)   tags: whatsapp .whatsapp.com/send?phone=${EditTextNumber.Text}&text=${EditTextMessange.Text}"$)
StartActivity...://api.whatsapp.com/send?phone=${EditTextNumber.Text}&text=${EditTextMessange.Text}"...WhatsApp a few years ago had published APIs that allowed to send messages to a specific number. For.... I have seen on sale APIs from third-party distributors that allow you to send messages with WhatsApp... B4A Question Whatsapp send message charachter problem - tufanv    Mar 17, 2022 Hello, Using the below code to send a message to a whatspp contact: Dim i As Intent i.Initialize(i.ACTION_VIEW, $"https://api.whatsapp.com/send?text=Test%%) i.SetComponent("android/com.android.internal.app.ResolverActivity") Try StartActivity(i) Catch Log("whatsapp yok") End Try The percentage sign shows as question mark which means not recognized by whatsapp. Everything works perfect other than this. What may... B4A Library [B4X] GreenApi - WhatsApp API - Mariano Ismael Castro    Oct 24, 2024   (20 reactions) 147338 Green API is a platform that allows you to send and receive WhatsApp messages through a stable API. 1. It is possible to send and receive text, photos and videos without the need to purchase and monitor a phone 2. Stable WhatsApp API works without a phone and your number is safe when using WhatsApp API Gateway 3. The API is fast, with a capacity of sending 120 messages per minute and... free plans to business plans that allow unlimited chats and up to 30,000 WhatsApp verifications per... B4A Question Send more than one WhatsApp message - AlpVir    Jun 15, 2024 .ACTION_VIEW, "https://api.whatsapp.com/send?phone=" & rs.GetString("Telefono") & "&text=" & TxtWA ) Intent1.SetComponent("android...How to send the same WhatsApp message to 3 or 4 different contacts registered in a SQLite archive? The following code sends only one message and forgets the others. TxtWA="Lorem ipsum dolor sit amet, consectetur adipisci elit, sed do eiusmod" rs=db.ExecQuery... B4i Question Share image with text to whatsapp ? - tufanv    Jan 23, 2018 Hello I followed the tutorial here : https://www.b4x.com/android/forum/threads/share-data-from-your-app-with-activityviewcontroller.73159/ I can send a image to a freind with this : avc.Initialize("avc", Array(Null, bmp)) if I type any text instead of null , whatsapp only sends the text without image. Is there any way to send the image with text via whatsapp . ( the problem is only for whatsapp , text & image can be send with email without a problem ) Thanks... Page: 1   2   3   4   5   6   7   |