Is it possible to have a share on Facebook link on a website that opens the share dialog in the native App?
Current behavio
https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share
You could try this and let the user decide what native app to use when sharing your link.
It opens the native share-via of the user's device
const data = {
title: document.title,
text: 'Hello World',
url: 'https://your_site_url',
}
const shareVia = window.navigator.share(data);