私はreactjsを使用しています。私はFacebookのコンテンツを共有したいと思っていますが、それは起こっていますが、共有した後、画像、タイトル、コンテンツの説明は表示されません。 だから私はreact-helmetを使ってindex.htmlにメタタグを動的に追加しました。メタタグをreact jsに動的に含めるにはどうすればよいですか?
<Helmet>
<meta property="og:type" content="video.other" />
<meta property="og:image" content="https://www.w3schools.com/css/trolltunga.jpg" />
<meta property="og:title" content="My Title" />
<meta property="og:url" content="https://www.afnity.com/video/155" />
<meta property="og:description" content="some discription of the shared content" />
</Helmet>
、ここで共有ボタン
<button> <a title="dummy"
href="http://www.facebook.com/sharer.php? u=https://dummy.com/videos/id=25" target="_blank">
share</a>
</button>
それが動作していないです。
FBスクレーパーは、任意のを解釈することはありませんJavaScript;要求されたURLに対してサーバーが返すHTMLコードにもともと含まれていたメタタグのみが表示されます。 – CBroe