I have a problem with openGraph metadata
Unanswered
American English Coonhound posted this in #help-forum
American English CoonhoundOP
in this link
https://nine-tails-shinobi-shop.vercel.app/product/6693bfc77bbb58e9fd970c1c
the product image or title are not being visible on link previews on any social media except for facebook
this is my function
https://nine-tails-shinobi-shop.vercel.app/product/6693bfc77bbb58e9fd970c1c
the product image or title are not being visible on link previews on any social media except for facebook
this is my function
export async function generateMetadata({ params, searchParams }: Props): Promise<Metadata> {
const id = params.id;
const productData = await getProduct(id);
if (!productData) return notFound();
const { product } = productData;
return {
title:Shinobi Store - ${product.name},
openGraph: {
images: [{ url: product.images.map((img: any) => img.imgUrl)[0] }],
},
};
}