share on facebook from chrome extension

后端 未结 3 681
情话喂你
情话喂你 2021-01-15 13:22

I want to share current opened tab url on facebook wall from chrome extension. For that, I was using https://facebook.com/share.php earlier which was giving me login option

3条回答
  •  北海茫月
    2021-01-15 14:00

    Accepted answer doesn't work for me.

    Found another way to share on facebook (jsfiddle):

    https://www.facebook.com/sharer/sharer.php?u={url}
    

    There is a tool that generates sharing dialog: https://apps.lazza.dk/facebook/ (© Has Facebook sharer.php changed to no longer accept detailed parameters?), here is an reverse engineered example:

    https://www.facebook.com/sharer/sharer.php
    ?u=${url}
    &picture=${pictureUrl}
    &title=${title}
    &caption=${caption}
    "e=${quote}
    &description=${description}
    

    This link generates sharing dialog like this:

    For a bigger picture we should omit quote:

提交回复
热议问题