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
0 answers

Unable to run Android4.4 in Oracle VM VirtualBox

I was successfully running Android4.4 on Oracle VM VirtualBox without any problem. However today when I started Android I am just getting the screen where it shows Android is loading. I haven't deleted any files. But I notice in settings that…
Sanchit Jain
  • 119
  • 3
  • 15
1
vote
1 answer

Send message to a specific number in WhatsApp

I'm using this code in order to send a message to a specific number in WhatsApp: public void sendMessage() { runOnUiThread(new Runnable() { @Override public void run() { String whatsappid =…
Hamzeh Soboh
  • 7,572
  • 5
  • 43
  • 54
1
vote
0 answers

WhatsApp URL scheme Objective C share location

i searched a lot today to share a location in my iOS App via WhatsApp. It's possible to send text with the WhatsApp URL scheme (https://www.whatsapp.com/faq/iphone/23559013), but does anyone knows if i can edit text in my WA-message or how i can get…
Dre
  • 11
  • 1
1
vote
1 answer

How to share data in iphone from Telegraph to Whatsapp

In WhatsApp we can easily share the content with message app, mail, and even within WhatsApp. But in Telegraph I cannot see this forward menu. I have tried to look in the settings for a permission option to allow Telegraph to share data with…
Zuhayer
  • 317
  • 1
  • 11
1
vote
1 answer

How to invite users through my app on whatsapp and share content IOS?

I have tried this code but its showing only whatsapp icon, but not sending content on it.Kindly suggest what's wrong I am doing - (UIDocumentInteractionController *) setupControllerWithURL: (NSURL*) fileURL usingDelegate: (id…
1
vote
2 answers

How can I send bitmap to WhatsApp Application

My question how can I send bitmap to Whastapp Application and I use below code; ImageView iv=(ImageView)view.findViewById(R.id.item_image); Bitmap bitmap = ((BitmapDrawable)iv.getDrawable()).getBitmap(); ByteArrayOutputStream stream = new…
Ozan
  • 1,191
  • 2
  • 16
  • 31
1
vote
0 answers

How to send particular message to a particular phone number in whatsapp from my app programatically

Here I am trying to send the message hello world to a number. Here is My code snippet: public void openWhatsappContact(String number) { Uri uri = Uri.parse("smsto:" + number); Intent i = new Intent(Intent.ACTION_SENDTO,uri); …
Taj Mb
  • 61
  • 5
1
vote
0 answers

command to download profile image - yowsup 2.0 python whatsapp

I have a problem with yowsup 2.0 and python. What is the command to download a profile image (of a friend) using yowsup 2.0 + python? Should I use a layer?
user3585560
  • 61
  • 1
  • 7
1
vote
1 answer

Sharrre and Whatsapp

Trying to use "whatsapp" share button along side with Sharrre (http://sharrre.com/). So far The main idea is this: see example Please try it on your mobile if you want , of course. function…
Locke
  • 629
  • 1
  • 5
  • 21
1
vote
1 answer

Redirect output of Whatsapp bash script to file interactively for automation purpose

Yowsup-cli is a library that can allow you to send message to whatsapp users,once authenticated. By the coommand yowsup-cli -a --interactive --wait --autoack --keepalive --config yowsup-master/src/yowsup-cli.config I can…
Jacquelyn.Marquardt
  • 602
  • 2
  • 12
  • 30
1
vote
2 answers

command python yowsup-cli -c config ... not working on raspberry pi

I am working on sending messages from RasPi through Whatsapp. I have already installed yowsup. I have completed with the registration process using the following commands, and have stored it in a config file: python yowsup-cli registration…
user3092228
  • 49
  • 1
  • 7
1
vote
2 answers

Share Text + URL via WhatsApp

I would like to share text and URL via WhatsApp. I have looked into few links, but it has only share text feature. How can i share URL + Text ? Here is what i have tried so far. Intent whatsappIntent = new…
Logger
  • 1,274
  • 1
  • 14
  • 25
1
vote
3 answers

Whatsapp Image sharing not working

My class implements the UIDocumentInteractionControllerDelegate and I have the following property:@property (nonatomic,retain) UIDocumentInteractionController * documentInteractionController; if ([[UIApplication sharedApplication] canOpenURL: [NSURL…
Praveen
  • 45
  • 1
  • 11
1
vote
0 answers

WhatsAPP CURL Request ID Encoded?

Alright, I am working on a WhatsAPP communicator for a client and I've got the data from the request via CURL but it seems that the ID is encoded in something I don't know? Looking for any input on this, do I need to set an accesstoken for the SSL…
Ryan
  • 25
  • 5
1
vote
1 answer

How to share a location to a Whatsapp contact?

I want to share my location to a Whatsapp contact. I don't know what is the mimeType that I have to use. This is the code I'm usign to share: Intent waIntent = new…