Home > OS >  Quote Parameter for Facebook Share method no longer working?
Quote Parameter for Facebook Share method no longer working?

Time:06-15

Per Facebook dev documentation, the share parameter "quote" should insert text:

https://developers.facebook.com/docs/sharing/reference/share-dialog/

This seemed to be working the other week, but now even using their own testing tool ( http://www.fbrell.com/Sharing/2 - FB.ui Dialogs?fbclid=IwAR2TX_eOex-HmIqbIfz9sakxN_laCAVVW_g6p-dW54WwVZkXQ_u5VZi8OCE ), the quote parameter doesn't seem to be inserting any text into the share dialog that pops up.

Anyone else experiencing this?

CodePudding user response:

Same problem here

FB.ui(
  {
    method: 'share',
    href: 'https://my-url',
    quote: encodeURIComponent('My quote')
  }
);

CodePudding user response:

same problem for me

  FB.ui({
        method: 'share',
        href: this.location,
        quote: this.description
      })

It worked a week ago, but now it doesn't. but the Facebook documentation does not mention anything about this change

https://developers.facebook.com/docs/sharing/reference/share-dialog

https://i.stack.imgur.com/CgSA0.png

  • Related