I'm using https://cards-dev.twitter.com/validator on http://parlaywith.me
.
When I include this tag (currently included):
<meta property="og:url"
content="http://parlaywith.me">
I get this error:
When I remove the tag, I get:
How can I keep the og:url
tag and avoid the error?
You might have to specify the URL with the trailing slash:
http://parlaywith.me/
instead of
http://parlaywith.me
Also note that HTML5 requires to use link
(instead of meta
) if the value is a URI:
<link property="og:url"
href="http://parlaywith.me/">