Reputation: 114
I am still trying to get a thumbnail as preview when sharing this site on facebook:
http://hundeschule-olching.de/
I have added the following code to my header:
<meta property="og:image" content="http://www.bilder-upload.eu/show.php?file=3d2bee-1459359037.jpg" />
I needed to load that image up first, even though it already is posted on facebook, but for some reason facebook does not accept its own links.
This would be the original facebook link:
It was already showing me the correct image in the debug tool from facebook, but when i tried to post the link in facebook, a completely different image was shown..(pick option). After running the debugger again the image that was fetched correctly a few minutes before was gone and it told me there will be a selection shown to pick from.
So I tried to fetch the image from the Data folder on the server going like this:
<meta property="og:image" content="Data/chak.jpg" />
did not work as well.
Please help me I'm going crazy about this problem.
Upvotes: 0
Views: 99
Reputation: 96413
http://www.bilder-upload.eu/show.php?file=3d2bee-1459359037.jpg
does not deliver an image, but an HTML document – at least for me. It is probably some sort of hotlinking protection of that upload service at work. You should test this with an image on a server you have control over, to avoid such problems.
And you need to use an absolute URL – a relative one like Data/chak.jpg
won’t work either.
Upvotes: 1