share-to-whatsapp
v0.2.0
Published
The share-to-whatsapp plugin allows you to easily share images and PDF files directly to a specified WhatsApp number from your Ionic/Capacitor application.
Readme
share-to-whatsapp
The share-to-whatsapp plugin allows you to easily share images and PDF files directly to a specified WhatsApp number from your Ionic/Capacitor application.
Requirements
- Capacitor 8.0.0 or higher
- iOS 13+ / Android API 22+
Install
npm install share-to-whatsapp
npx cap syncAPI
shareImage(...)
shareImage(options: { base64?: string; fileName?: string; phoneNumber?: string; message?: string; bundleId: string; }) => Promise<void>| Param | Type |
| ------------- | -------------------------------------------------------------------------------------------------------------- |
| options | { base64?: string; fileName?: string; phoneNumber?: string; message?: string; bundleId: string; } |
sharePdf(...)
sharePdf(options: { base64?: string; fileName?: string; phoneNumber?: string; message?: string; bundleId: string; }) => Promise<void>| Param | Type |
| ------------- | -------------------------------------------------------------------------------------------------------------- |
| options | { base64?: string; fileName?: string; phoneNumber?: string; message?: string; bundleId: string; } |
