Share url in facebook messenger from web

前端 未结 4 1333
日久生厌
日久生厌 2021-02-03 10:07

I would like to share an url from a website (using mobile device) to facebook messenger app.

I tried to use:

FB.ui({
    method: \'send\',
    link: \'ht         


        
4条回答
  •  心在旅途
    2021-02-03 10:28

    This is what you are looking for:

    Link:

    Send In Messenger
    

    JavaScript:

    window.open('fb-messenger://share?link=' + encodeURIComponent(link) + '&app_id=' + encodeURIComponent(app_id));
    

    Please note that it works only on mobile. For more information see here:

    https://developers.facebook.com/docs/sharing/messenger/web

提交回复
热议问题