B
B
bobjr2014-07-19 11:22:00
HTML
bobjr, 2014-07-19 11:22:00

Why does VKontakte display the OpenGraph picture last (not the cache)?

I insert a link to the page with the product on VKontakte, and instead of the product image (og:image), logo.jpg is loaded, it sometimes clings, but the last one in the list is displayed.
It's not about cache. How to solve the problem?
bug.png

<header>
   <meta content="product.jpg" property="og:image">
</header>
<body>
   <header>
      <img src="logo.jpg">
      <img src="banner.jpg">
   </header>
   <article>
      <img src="product.jpg">
   </article>
</body>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
trall, 2014-07-19
@sashablashenkov

Try immediately after body add product.jpg to img, but hide it

<header>
   <meta content="product.jpg" property="og:image">
</header>
<body>
   <img src="product.jpg" style="display:none">
   <header>
      <img src="logo.jpg">
      <img src="banner.jpg">
   </header>
   <article>
      <img src="product.jpg">
   </article>
</body>

Also try contacting their support.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question