要求facebook自动重新抓取URL

时间:2017-06-21 14:03:36

标签: facebook

如何让facebook的PHP代码自动更新单个URL的缓存 我在其他线程中看到类似的东西,但没有设法让它工作:

Is there an API to force Facebook to scrape a page again?

Ask facebook to re-scrape URL

1 个答案:

答案 0 :(得分:0)

例如使用这个php代码,添加我的网址www.tolchx.net的网址,但是当我去调试时它仍然显示相同的GIF:

<?php
   try {
      $params = [
         'id' => 'https://www.tolchx.net',
         'scrape' => 'true',
      ];
      $response = $fb->post('/', $params);
      print_r($response);
   } catch(\Facebook\Exceptions\FacebookResponseException $e) {
      // When Graph returns an error
      echo 'Graph returned an error: ' . $e->getMessage();
   } catch(\Facebook\Exceptions\FacebookSDKException $e) {
      // When validation fails or other local issues
      echo 'Facebook SDK returned an error: ' . $e->getMessage();
   }
?>

这足以自动更新链接缓存www.tolchx.net?

感谢回复