opengraph - Facebook's Lint is crawling root URL rather than the given URL -
there previous posts on web, none of proposed solutions work scenario.
i have children pages have own unique og tags, , parent root domain page own og tag, crawled facebook people can see descriptions/images when posted.
however, when post child url in box, results blatantly proof facebook crawled parent page instead. "see our scrapper sees" page confirms because parent template being shown.
here link fb's scrapper: https://developers.facebook.com/tools/debug
here og tags in root domain html template: suppose parent www.me.com suppose 1 child www.me.com/path/path
<head> ... <meta name="keywords" content="..."> <meta name="description" content="..." /> <meta property="fb:app_id" content="..."/> <meta property="og:site_name" content="..." /> <meta property="og:type" content="website" /> <meta property="og:title" content="..." /> <meta property="og:image" content="..." /> <meta property="og:description" content="..." /> <meta property="og:url" content="http://www.me.com" />
here og tags in child html template:
<head> ... <meta name="keywords" content="..."> <meta name="description" content="..." /> <meta property="fb:app_id" content="..."/> <meta property="og:site_name" content="..." /> <meta property="og:type" content="article" /> <meta property="og:title" content="..." /> <meta property="og:image" content="..." /> <meta property="og:description" content="..." /> <meta property="og:url" content="http://www.me.com/path/path" />
this frustrating because i've tried removing , adding many of tags in different combinations, , every single time, www.me.com parent gets crawled, while child left ignored!!
i tried mimic order of tags of other sites feature working cnn.com, mine still refuse crawl child..
any help? thank you.
check you're not
- rejecting crawler's attempt reach child page
- redirecting child page parent page when crawler tries load it
- including og:url meta tag on child page pointing homepage
- including canonical meta tag in child page pointing parent
those far reasons this, , though you've said in question og:url tags correct, in experience that's problrm
Comments
Post a Comment