Meta tags (og:image) for sharing in facebook (share) are not processed)

I registered meta tags in the project, so that during the sharing it tightens the desired image. On facebook, it first pulled up the logo, but due to changes in the resolution on fb 1200*630, it changed the image, but still pulls up the old logo, instead of the prescribed image... Here is the code I used in heder... Why I do not pull up the image from the meta tags?

<html lang="en" >    
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <meta property="og:type" content="image/jpeg">
    <meta property="og:image" content="http://www.mysite.com/images/faimage.jpg" >
    <meta property="og:url"  content="http://www.mysite.com/">
    <meta property="og:title"  content="my_site">
    <meta property="og:description" content="Something text">

    <meta property="og:image:type"  content="image/jpeg">
    <meta property="og:image:width" content="1200" >
    <meta property="og:image:height" content="630" >

Debugging fb https://developers.facebook.com/tools/debug/sharing/ all ranvo shows:

Inferred Property     The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property     The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property     The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.
Share App ID Missing  The 'fb:app_id' property should be explicitly provided, Specify the app ID so that stories shared to Facebook will be properly attributed to the app. Alternatively, app_id can be set in url when open the share dialog.

And it DOESN'T process meta tags...

<!DOCTYPE html>
  <html>
    <head>
      <meta http-equiv="content-type" content="text/html; charset=utf-8">
      <meta charset="UTF-8">
      <meta name="robots" content="noindex,nofollow">
    </head>

WHAT I need to do to display faimage.jpg during sharing?

Author: Александр, 2017-05-30

1 answers

Facebook Debagger (developers.facebook.com/tools/debug) when debugging, shows the debugging information of the entered site. The URL processed by the scraper does NOT show meta tags in the page code, but writes a single meta tag:

<meta name="robots" content="noindex,nofollow">

This problem is solved by adding a meta tag:

<meta name="robots" content="index, follow">
 0
Author: Александр, 2017-06-02 09:18:56