Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change thumbnail on Facebook link

When I link to my website on Facebook a thumbnail comes up but it is not the thumbnail I want to come up. How do I change the thumbnail. It shows the image on the object debugger

http://developers.facebook.com/tools/debug/og/object?q=totelfootball.com

How do I change the image?

I have seen similar posts but want to no a simple solution for the issue? Can it be done on Facebook no coding involved?

like image 354
user903794 Avatar asked Aug 20 '11 14:08

user903794


People also ask

How do I share a Facebook link with a thumbnail?

Click the “upload image” link under the thumbnail. Select an image from your computer. It's way more visually appealing! And when others hit “share” on your post, the engaging photo is shared along with the LINK to the article or action page!


2 Answers

you can add into <head></head>

this tag <link rel="image_src" href="http://URL-TO-YOUR-IMAGE" / >

OR change <html> tag to

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml">

and add into tag <head></head> this tag

<meta property="og:image" content="http://URL-TO-YOUR-IMAGE" />

Don`t forget to test your link using facebook debug tool

like image 193
ahmed hamdy Avatar answered Sep 28 '22 11:09

ahmed hamdy


  1. Go to http://developers.facebook.com/tools/debug
  2. Enter the URL following by fbrefresh=CAN_BE_ANYTHING

Examples:

  1. http://www.example.com?fbrefresh=CAN_BE_ANYTHING
  2. http://www.example.com?postid=1234&fbrefresh=CAN_BE_ANYTHING
  3. OR visit: http://developers.facebook.com/tools/debug/og/object?q=http://www.example.com/?p=3568&fbrefresh=89127348912

I was having the same issue last night, and I got this solution from some website.

Facebook saves your cache thumbnail. The thumbnail will not change even if you delete the image from your server. But Facebook allows you to refresh by using fbrefresh

I hope this helps.

like image 25
P.C. Avatar answered Sep 28 '22 10:09

P.C.