Magento – share product with product image and details on social media websites

productsocial-buttons

I am working on product share part within Magento. As per link product link only get shared on social website. I want to share product with its image and details.

Best Answer

As far as I know it is not possible anymore to pass parameters via URL to the share function.

The best practice in my opinion is to implement open graph tags in your website, then facebook is able to extract the correct information. More on open graph tags can be found in the facebook documentation.

https://developers.facebook.com/docs/sharing/best-practices#tags

The most important og tags for your purpose might be the description and the image.

<meta property="og:description" content="MyFavNews is the best source for your favorite news." />
<meta property="og:image" content="http://graphics.myfavnews.com/images/logo-100x100.jpg" />

The upside of the og tags is that they also work if someone post your URL manually on facebook.

Related Topic