ARTICLE AD BOX
I am experiencing an issue with Social Share in Ionic Native. I want to share an image along with a text description. However, when sharing to WhatsApp with an image preview, the text description does not appear. So the user needs to enter a manual description.
The text description only appears when sharing without an image. This issue does not occur on other platforms such as Facebook, Twitter, and Telegram, where everything works correctly.
* ionic-native/social-sharing: ^5.36.0 * Andorid API: 32 * WhatsApp: v2.25.36.73
I have tried these two approaches, but the result is still the same.
async socialShare() { this.socialSharing.share( this.generateTextShare(), null, this.event.image_url, null ); } async socialShare() { this.socialSharing.shareViaWhatsApp( this.generateTextShare(), this.event.image_url, null ); }