Social share whatsapp

hello I use the plugin SocialSharing ionic 3 it works well, but I want to send messages by whatsapp automatically without opening whatsapp, click on the button nothing is displayed but the message is sent.

 this.socialSharing.shareViaWhatsApp(this.text, null).then(() => {
      console.log('success');
    }).catch((e) => {
      console.log('erreur');
    });
  }