Send a link to whatsapp group directly from browser (or from app) Send a link to whatsapp group directly from browser (or from app) android android

Send a link to whatsapp group directly from browser (or from app)


Sharing directly from the browser works both in iPhone and Android if you use WhatsApp version 2.11 or higher. As you said it DIDN'T USED TO work in Android.

U can use the same URL

"whatsapp://send?text=Hello%2C%20World!" 

Knowing abid is not possible as far as I know.

Hope this was helpful.

Thank You.


in Android you can invite friends from an app using Intent, see the following Code

final ComponentName name = new ComponentName("com.whatsapp", "com.whatsapp.ContactPicker");Intent oShareIntent = new Intent();oShareIntent.setComponent(name);oShareIntent.setType("text/plain");oShareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Your Message");startActivity(oShareIntent);

I hope this solves your problem