我在Html页面的头部添加了Open Graph元标记,用于内容以及Linked In上的图像共享。当我分享我的网站url它没有拍摄图像,它只采取描述。以下是我的元标记
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="article"/>
<meta prefix="og: http://ogp.me/ns#" property="og:title" content="{{ $article['headline'] or ''}}"/>
<meta prefix="og: http://ogp.me/ns#" property="og:image" content="{{ $article['image_url'] }}"/>
<meta prefix="og: http://ogp.me/ns#" property="og:description" content="{{ $article['headline2'] or ''}}"/>
<meta prefix="og: http://ogp.me/ns#" property="og:url" content="https://therightdoctors.com/{{$article['category']}}/{{ $article['slug']}}" />
请帮助我们。