'When sharing a blog link on social media the link thumbnail and title is not coming there in Gatsby even we've all the required meta tags
I'm developing a blogs page where I have separate pages of every blog and I want to show the thumbnail & title of every blog when sharing the link those data are dynamically coming.
Here is my code, how I'm doing it currently
<meta property="og:site_name" content="Nickelfox Technologies" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nickelfox.com/" />
<meta property="og:title" content={blogData.title} />
<meta property="og:description" content={blogData.excerpt} />
<meta property="og:image" content={blogImage} />
Solution 1:[1]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Abdullah Rasheed |
