Include fb:app_id
in generateMetadata
#47111
Closed
bryanjhickey
started this conversation in
Ideas
Replies: 2 comments 7 replies
-
You can also add custom meta tags, like so: export const metadata = {
title: "Home",
description: "Welcome to Next.js",
viewport:
"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0",
other: {
["fb:app_id"]: "your_app_id",
},
}; Ah I see, in this case it would be useful as |
Beta Was this translation helpful? Give feedback.
5 replies
-
@bryanjhickey try
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Goals
fb:app_id
ingenerateMetadata
, possibly underopenGraph
or (better?)verification
?custom
options because we can't passfb:app_id
in thename
:content
value pair as facebook expectsname
forapp_id
to be passed asproperty
Non-Goals
Background
I'm not aware of any alternatives to the approaches IO have discussed above.
Proposal
Update type definitions for and
generateMetadata
tooling to include this option.Beta Was this translation helpful? Give feedback.
All reactions