Questions tagged [whatsapp]

WhatsApp Messenger is a proprietary, cross-platform instant messaging application for smartphones. In addition to basic messaging and video calling, WhatsApp Messenger users can send each other images, video and audio media messages.

WhatsApp Messenger is a cross-platform mobile messenger supporting end-to-end encryption. It replaces SMS and works through the existing internet data plan of a device. Aside from supporting text messages, it also supports sharing (GIF) images, videos and audio messages.

WhatsApp is available for iPhone, Android and Windows Phone devices. It can additionally be accessed via the internet browser of desktops.

For more information, visit WhatsApp.com or read the Wikipedia entry on WhatsApp.

3065 questions
1
vote
1 answer

Whatsapp implicit intent not working

I am trying to share image and text via whatsapp using implicit intent but I'm not able to share. I have searched the net but could not find any proper explanation. I have attached the code below. ... the code works without errors.but it dose not…
1
vote
2 answers

Share image via whatsapp ios 8

I am capturing an image in my app and what to share it using WHATSAPP by pressing share button like in RETRICA. But i didn't find any way to do it properly. i used UIDocumentInteraction but it didn't work. How can i share it using share extension of…
Wahib
  • 85
  • 1
  • 11
1
vote
3 answers

send messages to another number using whatsappAPI in C#

I want to send a message from my number to another number on whatsApp using whatsApp API in C#. for this I installed WhatsAppi for .NET in visual studio 2013. Here is the code i am using. string from = "919586896325"; string to =…
Prakhar
  • 530
  • 10
  • 24
1
vote
0 answers

How to return back to app from Whatsapp

I tried using this method for sending message on whatsapp from my iOS app. For text NSString * msg = @"YOUR MSG"; NSString * urlWhats = [NSString stringWithFormat:@"whatsapp://send?text=%@",msg]; NSURL * whatsappURL = [NSURL…
simardeep singh
  • 220
  • 2
  • 11
1
vote
1 answer

Callback from whatsapp after sharing message

in my application I have to give some points to users after sharing some link. I have done this for Facebook and Twitter because they were giving a call back after successful sharing. Is there any option to detect wether the link is shared or not in…
droidev
  • 7,352
  • 11
  • 62
  • 94
1
vote
1 answer

Sharing location (map) with WhatsApp?

I've noticed WhatsApp has recently(?) enabled sharing location service and since we can open WhatsApp to send pictures/videos I thought maybe now there's a way to also send location? I haven't really found anything on that matter yet but maybe…
durazno
  • 559
  • 2
  • 7
  • 25
1
vote
1 answer

Sending message to whatsapp from Android app

How can we send an image directly to whatsapp from android app? I tried using Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher); Uri imageuri = getImageUri(getApplicationContext(), b); Intent…
Anagha Magar
  • 11
  • 1
  • 5
1
vote
1 answer

How whatsapp find the name of the user during sign up?

I am trying to implement signup activity in android using phone number as done by whatsapp and many other applications these days. But i also need to know the name of the user but without prompting the user to enter it himself/herself. is it…
KungFu_Panda
  • 111
  • 11
1
vote
0 answers

Whatsapp update and sharing video

I am making an app that shares a video through whatsapp. Implementation is super easy, and it worked well until the beginning of August. When you trigger WhatsApp with the DocumentInteractionController, the controller will propose 2 options for…
Zeretyh
  • 17
  • 1
  • 6
1
vote
1 answer

share to whatsapp automatically without menu ios

I have a sound which i want to share on Whatsapp, using the UIDocumentInteractionController it is working perfectly, but i don't want to promote the user to choose Whatsapp, i want it to be picked immediately. Is that possible ? For the text share…
user5132182
  • 31
  • 1
  • 3
1
vote
1 answer

How to send Whatsapp message to new number

I' d like to send a whatsapp message by clicking on a button to a number that comes from the Android Activity (that in turn fetches from a server). The number to which I have to send a new is NOT an existing contact on my phone. I know how to open…
AleNegrini
  • 93
  • 2
  • 12
1
vote
0 answers

Cutting whatsapp shared videos using FFMPEG

I am using hiteshsondhi88/ffmpeg-android library to time or cut videos.I have added below dependency. compile 'com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.2.5' I am using below command execFFmpegCommand("-i " + path + " -ss " + startMs /…
Android Developer
  • 9,157
  • 18
  • 82
  • 139
1
vote
0 answers

How to change package name of WhatsApp

i found that many devs are changing package name of whatsapp like whatsmapp and og can anyone help me in this How can i do that ? Or any guide to learn this smali values and how it works
Unknown
  • 11
  • 4
1
vote
1 answer

Is it good to use Google libphonenumber library for commercial purpose?

Is it good idea to use Google libphonenumber library for commercial application? Eg. we are thinking to add validation of a phone number at the time of sign up. Earlier we were using regex for it. As we have OTP based verification system, so regex…
hatellla
  • 4,796
  • 8
  • 49
  • 101
1
vote
0 answers

How to share an image with WhatsApp Android?

I'm trying this code to send images to WhatsApp, but when it opens the WhatsApp screen and when I select the contact, I don't see any image. Can someone help me? Bitmap adv = BitmapFactory.decodeResource(getResources(), R.drawable.image3); …
Darga Lael
  • 11
  • 4