1. SUNIL Prajapati
  2. PowerServer Mobile (Obsolete)
  3. Friday, 5 July 2019 18:28 PM UTC
I Developed Mobile app in Appeon Powerbuilder2019 , i want to send diamond
Inventory to my customer on whatsapp.

but didn't find way to share my data on whatsapp via powerbuilder

in android platforms there is way in which we can do it

 

Like most social apps on Android, WhatsApp listens to intents to share media and text. Simply create an intent to share text, for example, and WhatsApp will be displayed by the system picker:

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);

Armeen Mazda @Appeon Accepted Answer Pending Moderation
  1. Friday, 5 July 2019 18:46 PM UTC
  2. PowerServer Mobile (Obsolete)
  3. # 1

You should be able to do this using URL schemes: https://faq.whatsapp.com/en/iphone/23559013

Comment
There are no comments made yet.
Chris Pollach @Appeon Accepted Answer Pending Moderation
  1. Friday, 5 July 2019 19:56 PM UTC
  2. PowerServer Mobile (Obsolete)
  3. # 2

Hi Sunil;

  You might want to have a look at using a Cordova plug-in, something like this ...

https://www.npmjs.com/package/cordova-plugin-x-socialsharing

HTH
Regards ... Chris

Comment
There are no comments made yet.
  • Page :
  • 1


There are no replies made for this question yet.
However, you are not allowed to reply to this question.