Ionic Social Share Facebook Android

Can we share content, image, and url on facebook via ionic social share in android.

Short answer is Yes. You have a plugin for that.

How?

because i am try but i can send only message not image, I want to send both image and message at a same time.

in short i am developing ionic social share for my app for that i want to share content and image share on Facebook via ionic social sharing.

Check this plugin: https://github.com/moberwasserlechner/capacitor-filesharer

this.socialSharing.shareViaFacebook(this.product1.title, this.product1.imagePath,this.product1.productURL)
            .then((res)=>{
              console.log("success")
            })
            .catch((err)=>{
              alert('error share' + JSON.stringify(err));
            })