0
我有一個網頁,我想在Facebook上分享它,但顯示的圖像不正常。 在網頁的HTML代碼,我有:在Facebook上共享網頁時顯示的圖像
<link href="http://www.example.com/img/logo2.png" rel="image_src" />
在選項選擇圖像,還有其他的圖像,但不logo2.png
我試圖刪除Facebook的緩存與facebook debugger,但結果是一樣。
編輯:
如果我添加?v=1
到底的URL,當我分享,logo選項所示。這意味着facebook調試器不會刪除緩存。 此外,我希望徽標圖像是第一個選項。
你能幫我嗎?
解決:
<!-- facebook tags -->
<meta property="og:image" content="http://www.example.com/img/logo.png"/>
<meta property="og:url" content="http://example.com">
<meta property="og:title" content="Portfolio | web">
<meta property="og:description" content="Portfolio">
它的工作原理。謝謝。 ;) – vicenrele