Facebook" og:img"不更新?

时间:2015-04-27 20:05:52

标签: html facebook

我试图在我的网站上更新图片,网址为:www.lux-boutique.co.uk,在Facebook上显示的图片不会更新到我的新图片。

有什么想法吗?

我使用了facebook调试工具,它只是提出了我的旧工具。它不会更新到我的新版本。我甚至从cPanel删除了旧图片,但它仍然出现了。

链接到og:img是http://www.lux-boutique.co.uk/fblogo.png,标题中的代码是

    public static void main(String[] args) {
    if (args.length != 2) {
        throw new IllegalArgumentException("args is out of range");
    }

    final String from = args[0];
    final String to = args[1];
    int errCode = 0; // Unix error handling

    // FileReader uses "the default character encoding".
    // To specify an encoding, use this code instead:
    // new BufferedReader(new InputStreamReader(new
    // FileInputStream(fileName), "UTF-8"));

    // This "try-with-resource" statement automatically calls file.close()
    // just before leaving the try block.
    try (BufferedReader file = new BufferedReader(new FileReader("distances.txt"))) { // absolutadressen :C
        pathSearch(from, to, file);
    } catch (IOException e) {
        System.err.println("File not found");
        errCode = 1;
    } finally {
        System.exit(errCode);
    }
}

1 个答案:

答案 0 :(得分:1)

这很常见,Facebook会缓存OG数据,因此您可以通过使用调试工具实际检查它是否正常工作

https://developers.facebook.com/tools/debug/

希望这有帮助!

编辑

如果这不起作用,你可以试试这本手册,用一个类似

的小jQuery ajax帖子
$.post(
    'https://graph.facebook.com',
    {
        id: 'http://www.lux-boutique.co.uk/the/url/to/share',
        scrape: true
    },
    function(response){
        console.log(response);
    }
);

如果这没有帮助,您是否可以分享指向OG图片的链接以及您如何包含它?也许这会有所帮助。