meta tags - What could cause the Twitter card validator to give a redirect loop error? -


i'm using https://cards-dev.twitter.com/validator on http://parlaywith.me.

when include tag (currently included):

<meta property="og:url"        content="http://parlaywith.me"> 

i error:

error: fetching page failed because resulted in many redirects. warn: card redirected http://parlaywith.me/

when remove tag, get:

info: page fetched successfully

how can keep og:url tag , avoid error?

you might have specify url trailing slash:

http://parlaywith.me/ 

instead of

http://parlaywith.me 

also note html5 requires use link (instead of meta) if value uri:

<link property="og:url"     href="http://parlaywith.me/"> 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -