Phaser 3 web facebook share

its easy to share some link from html/javascript. but is there a way to share some link on facebook from phaser game? links might help : https://developers.facebook.com/docs/plugins/share-button/

found a workaround

function facebookShare(){
    var url = `https://youtube.com`;
    window.location.assign(`https://www.facebook.com/sharer/sharer.php?s=100&p[url]=${url}`,'targetWindow','toolbar=no,location=0,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=250'); 
    return false;
}