Reputation: 1399
if i put
<head>
<base href="http://www.domain.com" />
<meta property="og:type" content="article"/>
<meta property="og:title" content="Title"/>
<meta property="og:description" content="description"/>
</head>
in the Structured Testing Tool the follow error message is shown:
Unspecified Type
if i remove the line <base href="http://www.domain.com" />
it is fine.
I need the <base>
tag.
Whats wrong or what can i do to validate with the base-tag?
Upvotes: 3
Views: 447
Reputation: 419
You have to change head tag like below:
<head typeof="og:article">
Upvotes: 0
Reputation: 1399
I found the problem.
Upvotes: 1