我不认为我错过了元标记中的任何内容。当我尝试验证我在此处设置的 URL 时收到以下错误消息:https ://cards-dev.twitter.com/validator
INFO: Page fetched successfully
INFO: 4 metatags were found
ERROR: No card found (Card error)
我想显示 OGP 图像的 URL: http: //apex-profile-generator.herokuapp.com/profile/4
我的 Laravel 应用程序中的元标记。
@section('meta')
<meta name="description" content="ApexProfiler 自分のプレイを可視化しよう" />
<meta property="og:site_name" content="ApexProfiler" />
<meta property="og:title" content="{{ $user->name }}さんのProfile | ApexProfiler" />
<meta property="og:url" content="{{ \Illuminate\Support\Facades\URL::full() }}/{{ $user->id }}" />
<meta property="og:image" content="https://stats-graph.s3-ap-northeast-1.amazonaws.com/bosyu/RpXKLmsIssc6yAP1eAUGOqhPYkIPwl8CHrWB8WIj.txt">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image"/>
<meta property='twitter:title' content="{{ $user->name }}さんのProfile | ApexProfiler"/>
<meta property="twitter:url" content="{{ \Illuminate\Support\Facades\URL::full() }}/{{ $user->id }}"/>
<meta property="twitter:image" content="https://stats-graph.s3-ap-northeast-1.amazonaws.com/bosyu/RpXKLmsIssc6yAP1eAUGOqhPYkIPwl8CHrWB8WIj.txt">
@endsection
我相信它肯定会显示所有必要的标签。有谁知道为什么我仍然收到错误?