og:image Open Graph Warnings image size

My experience with Facebook made me doubt that computers are deterministic machines 🙂 Sometimes it will accept image of any size (between 200 and 1500px), sometimes complain that image is too small (og:image should be larger) even if image is squared and bigger than minimum size (e.g. 400x400px). I had situations where the same link … Read more

Facebook open graph meta tags & valid html [duplicate]

Don’t forget that they also want you to declare some schemas to the html tag – specifically the open graph one via xmlns:og=”http://opengraphprotocol.org/schema/. OG is based on RDFa which adds the additional attributes to the meta tags. Once you’re done with that, be sure to add your fb:like – <fb:like href=”http://developers.facebook.com/” width=”450″ height=”80″/> – the … Read more

Facebook Open Graph Error – Inferred Property

Are those tags on ‘http://www.mywebaddress.com’? Bear in mind the linter will follow the og:url tag as this tag should point to the canonical URL of the piece of content – so if you have a page, e.g. ‘http://mywebaddress.com/article1’ with an og:url tag pointing to ‘http://mywebaddress.com’, Facebook will go there and read the tags there also. … Read more

Why does Facebook Graph API say my account is non-active?

Please read this article: Mark Zuckerberg apologises for Facebook’s ‘mistakes’ over Cambridge Analytica Cambridge University researcher named Aleksandr Kogan had used an app to extract the information of more than 50 million people, and then transferred it to Cambridge Analytica for commercial and political use. So facebook is changing its policies so that the personal … Read more

Facebook api: (#4) Application request limit reached

The Facebook API limit isn’t really documented, but apparently it’s something like: 600 calls per 600 seconds, per token & per IP. As the site is restricted, quoting the relevant part: After some testing and discussion with the Facebook platform team, there is no official limit I’m aware of or can find in the documentation. … Read more

og:url is driving me crazy?

og:url basically tells the FB scraper “ignore anything on this page, and scrape this url instead” So it’s doing exactly what it’s supposed to do. If you want the like button to point to a different url, use the href parameter and have it point to a different url. See https://developers.facebook.com/docs/reference/plugins/like/ for more information.

What is the correct implementation of the Open Graph “article” type?

Have a look at the Facebook developers page: https://developers.facebook.com/docs/reference/opengraph/object-type/article It looks like your examples 2 and 3 have incorrect formatting. None of the “article” properties should begin with “og:” Here’s what I have on one of my sites, and I get no errors from the FB debugger: <meta property=’og:type’ content=”article” /> <meta property=’article:author’ content=”https://www.facebook.com/YOUR-NAME” /> … Read more