'How to do Facebook share for Ionic 5 Angular 12 with capacitor 3

Has anyone done a facebook share for web and android versions for angular 12 with capacitor 3? Has to send image and text. I am not sure even if this is possible? Ι am using this but i am getting that it doesnt work for browser. (Share Api DOESN'T WORK FOR BROWSER). How can i do facebook share?

import { Share } from '@capacitor/share';

await Share.share({
  title: 'See cool stuff',
  text: 'Really awesome thing you need to see right meow',
  url: 'http://ionicframework.com/',
  dialogTitle: 'Share with buddies',
});

i tried this doesn't work on browser



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source