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

Send Image via Intent by WhatsApp - Wrong Image

I thought that this is a popular problem, but I can't find anything related to it. So here is what I want: I'm trying to send an Image by WhatsApp with the following code: public static void shareImage(Context context,Bitmap bitmap, String text){ …
Wicked161089
  • 481
  • 4
  • 18
1
vote
1 answer

Send whatsapp contact card when click a button

I've already a service that allows me to send message to a whatsapp number, now what I need is to make a button on my web and when somebody click it, send my contact card to them, so they can add me to their phone directory. I found this code that…
chino_10
  • 27
  • 1
  • 7
1
vote
3 answers

Where are WhatsApp images stored in iphone? Is it in server or phone itself?

I actually hide all the WhatsApp images from Camera Roll. i just want to know where exactly these images are stored! Sorry, This look like very simple one. But i need to know PS:I am new to iPhone world
Darshn
  • 1,512
  • 1
  • 23
  • 31
1
vote
1 answer

Not able to share an Image on Whatsap

I am writing an app to share image. I wrote the code but getting problems. What I am doing 1: Saving the image temporarily in Internal Stoarge 2: Passing the URI to share the image. Image is successfully saved in internal storage but not getting…
user2446474
1
vote
1 answer

Whatsapp link not working for ios

In my mobile web, there's a link that lets you share the page through Whatsapp. Basically, it's an anchor element with a whatsapp://send value in its href. It works perfectly if I use it with an Android device, but when I click it with my iPhone…
peregraum
  • 529
  • 1
  • 8
  • 19
1
vote
3 answers

How can you send what's app messages programmatically in android?

I am trying to implement a functionality similar to what Pushbullet does i.e reply to whats app messages programmatically without entering WhatsApp. Any help will be appreciated, Thanks.
Aniket Shinde
  • 350
  • 3
  • 13
1
vote
0 answers

This code open the correct user conversation in whatsapp but message sent in intent is missing . Why?

message = ((TextView)findViewById(R.id.message)).getText().toString().trim(); number = ((TextView)findViewById(R.id.phone)).getText().toString().trim(); Uri uri = Uri.parse("smsto:" + number); Intent sendIntent = new Intent(Intent.ACTION_SENDTO,…
Jai Mani
  • 11
  • 1
  • 2
1
vote
1 answer

Windows Phone Whatsap Share Text

Is possible to share text to WhatsApp app in Windows Phone? I found only way to run app. But how to share data like on Android or iOS? await Windows.System.Launcher.LaunchUriAsync(new Uri("whatsapp:"));
Norbert Pisz
  • 3,392
  • 3
  • 27
  • 42
1
vote
0 answers

Sending a message in what's app particular number through my app

Hello Friends i Want to Send a message in what's app particular number define by me in my java file. i followed this link and include below code in my project. public void sendWhatsAppMessageTo(String whatsappid) { Cursor c =…
1
vote
1 answer

How to open WhatsApp programmatically and then get back to my app?

In my app I need to send links via WhatsApp. So this is how I do that: NSString* link = (NSString *)CFBridgingRelease(CFURLCreateStringByAddingPercentEscapes(NULL, …
Andrey Chernukha
  • 21,488
  • 17
  • 97
  • 161
1
vote
0 answers

How to get gjid after create group in whatsapinet?

I use whatsapinet api enter link description here To send message with C# ( asp.net web form) Now when I create new group with sendcreategroup() method I can't receive gjid in wa_OnGetGroupSubject delegate ! In fact wa_OnGetGroupSubject does not…
mohammad
  • 275
  • 3
  • 16
1
vote
0 answers

Share an image from my website on Whatsapp

My website is used mainly from mobiles and I want to allow my users to click a "Share on Whatsapp" button which will open Whatsapp on their device with an image ready to be sent. I know how to share text, as explained here, but I haven't found…
DMEM
  • 1,573
  • 8
  • 25
  • 43
1
vote
0 answers

After starting an Intent to an external app and return to my app

Currently I have a Button which will share an URL with a friend by using WhatsApp. However, is there a way to return them back to my app after the message has been sent? Here is my code so far. whatsapp_item.setOnClickListener(new…
user968808
1
vote
0 answers

Message sent but not delivered in whatsapp PHP API

I am using whats app API https://github.com/venomous0x/WhatsAPI But When I am trying to send message with this api Then I am getting the status {"success":true,"data":"Message Sent!","messages":null} But the message is not delivered to inbox I have…
Rohitashv Singhal
  • 4,517
  • 13
  • 57
  • 105
1
vote
0 answers

Android - Send message to specific Whatsapp contact

I want to send message to specific Whatsapp contact. I have done following code but it only opens chatbox with specific contact but does not sent message. //send message String number="97*******"; Uri uri = Uri.parse("smsto:" + number); …