Replies: 3 comments 1 reply
-
You are right, the docs and the code shows following example: * {
* type: "website",
* url: "https://example.com",
* title: "My Website",
* description: "My Website Description",
* siteName: "My Website",
* images: [{
* url: "https://example.com/og.png",
* }],
* }
*
* <meta property="og:type" content="website" />
* <meta property="og:url" content="https://example.com" />
* <meta property="og:site_name" content="My Website" />
* <meta property="og:title" content="My Website" />
* <meta property="og:description" content="My Website Description" />
* <meta property="og:image" content="https://example.com/og.png" /> But in reality you will get with the same code following result: <meta property="og:image:url" content="https://example.com/og.png"> |
Beta Was this translation helpful? Give feedback.
0 replies
-
Could this issue affect the thumbnail in WhatsApp? I have an image LESS THAN 300KB, less than 256x256, and it's still does not load. However, I do not have the same issue in Twitter or LinkedIn. |
Beta Was this translation helpful? Give feedback.
1 reply
-
We've changed it to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the feature you'd like to request
When specifying Open Graph image with the new metadata API in
app/
, Nex.js currently rendersog:image:url
instead ofog:image
. Althoughog:image:url
technically matches the spec, not every website recognizes it. e.g., LinkedIn doesn't.Using
og:image
will help in supporting different websitesDescribe the solution you'd like
og:image
is used instead ofog:image:url
Describe alternatives you've considered
N/A.
Beta Was this translation helpful? Give feedback.
All reactions