share-open-graph

OpenGraph image standards for Facebook, Whatsapp, and iMessage

倖福魔咒の 提交于 2021-02-20 02:45:32
问题 Open Graph tag for Whatsapp link sharing showed that I can have two or more Open Graph images, e.g. a rectangular one for Facebook and a square one for Whatsapp: <meta property="og:image" content="https://emotionathletes.org/images/logo_1200x630_facebook_shared_image_EN.png"> <meta property="og:image:width" content="1200" /> <meta property="og:image:height" content="630" /> <meta property="og:image" content="https://emotionathletes.org/images/logo_400x400_facebook_shared_image_EN.png"> <meta

NextJs dynamic open graph meta tags not rendering for facebook debugger

雨燕双飞 提交于 2020-08-09 09:47:27
问题 I have tried to include meta tags using base "Head" feature of NextJs, react-helmet and next-seo packages.They all works fine on client side and show meta tags in inspect tool. But When I try to detect it using facebook debugger tool or any other open graph tags detector, it does not work. May be something to do with server side rendering of meta tags but I have not found enough material to implement server side meta tags in NextJs framework. 回答1: Are you using Redux Persist? Since there is a

NextJs dynamic open graph meta tags not rendering for facebook debugger

拈花ヽ惹草 提交于 2020-08-09 09:47:10
问题 I have tried to include meta tags using base "Head" feature of NextJs, react-helmet and next-seo packages.They all works fine on client side and show meta tags in inspect tool. But When I try to detect it using facebook debugger tool or any other open graph tags detector, it does not work. May be something to do with server side rendering of meta tags but I have not found enough material to implement server side meta tags in NextJs framework. 回答1: Are you using Redux Persist? Since there is a

Facebook API Share open graph Issues

痞子三分冷 提交于 2019-12-02 10:09:39
问题 Since a few days , Facebook share via the implementation of share_open_graph no longer works correctly. Its seems it's the open graphs metatags found on the og:url which are scraped. Is anyone having the same issue ? FB.ui({ method: 'share_open_graph', action_type: 'og.shares', action_properties: JSON.stringify({ object: { 'og:url': FBLink, 'og:title': FBTitle, 'og:description': FBDesc, 'og:image': FBPic, 'og:locale': 'fr_FR', 'og:image:width': 540, 'og:image:height': 281 } }) }, function

Facebook API Share open graph Issues

早过忘川 提交于 2019-12-02 04:41:57
Since a few days , Facebook share via the implementation of share_open_graph no longer works correctly. Its seems it's the open graphs metatags found on the og:url which are scraped. Is anyone having the same issue ? FB.ui({ method: 'share_open_graph', action_type: 'og.shares', action_properties: JSON.stringify({ object: { 'og:url': FBLink, 'og:title': FBTitle, 'og:description': FBDesc, 'og:image': FBPic, 'og:locale': 'fr_FR', 'og:image:width': 540, 'og:image:height': 281 } }) }, function (response) { // Action after response }) 来源: https://stackoverflow.com/questions/55901886/facebook-api