This problem seems to be fairly common, but I'm yet to come across a solution (here or elsewhere) that has solved my problem.
I'm trying to include an image with my Facebook like button, but the image will not show up. The Share button does show up, though. I've tried several different images, even from different websites. I also tried pasting in the code from another (working) Facebook like button on another website, but the image still did not appear on my website.
I don't know if there is a problem with my server, or whether I am just doing something wrong with my code. Thanks in advance for the help.
Here is the sample webpage that I wrote to test the Facebook like button. I copied all of the main code from the Facebook Developer webpage.
EDIT: I have included the meta-data with the test page and with the main page (apnotes.net). I receive no errors from the Facebook URL Linter. The og:image shows up on the debugger page, but it does not show up on the test page.
Any help would be greatly appreciated. I have spent hours trying to debug this.
<html>
<head>
<meta property="og:title" content="APNotes.net" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://apnotes.net" />
<meta property="og:image" content="http://www.apnotes.net/images/fb_profile.png" />
<meta property="og:site_name" content="APNotes.net" />
<meta property="fb:app_id" content="xxxxxxxxxxxxxxx" />
<meta property="og:description" content="Your only source for quality AP U.S. History notes" />
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-like" data-href="http://www.facebook.com/apnotes" data-send="false" data-width="450" data-show-faces="false" data-font="arial"></div>
</body>
</html>