0
votes

I am debugging the below link:

https://www.alldaydr.com/product_detail/EllaOne/Nw%253D%253D%250A/

on facebook's share debugger https://developers.facebook.com/tools/debug/og/object/. I can see all the meta-tags scrapped by facebook and no errors or warnings still it shows 404 in the preview card. Screenshot

1
“still it shows 404” … because that’s what your system responded with, for that particular request. Up to you to go figure out, why! Maybe you have plugins installed that try to block requests by bots that way, something like that. - CBroe
@CBroe It's working for all the social sites, (Twitter, Linkedin, google+, slack too) also I verified it using curl command and it doesn't respond with 404 curl -X HEAD -I https://www.alldaydr.com/product_detail/EllaOne/Nw%253D%253D%250A/ - Nishan Bende
mxtoolbox.com/… reports IPs from a totally different range, than the one the Facebook debugger shows. And a local ping from my machine gives a totally different one as well. - CBroe
Re-scraping it right now resulted in an IP from the same range I see locally, and in that case no 404 error. So something with your DNS setup might not be quite right. - CBroe
I'll verify and share the response, Thanks @CBroe - Nishan Bende

1 Answers

0
votes

There is some redirection happening, it goes to https://www.alldaydr.com/home. That page is missing a doctype, and the Open Graph URL is wrong:

<meta property="og:url" content="asdas">

Without the redirection, there are still 2 problematic things:

  • No doctype.
  • A lot of code before the Open Graph tags. You need to put metatags first.

There can also be some server configuration sending a 404 to Facebook, of course. That´s more likely the case right now.