Screenshot for Facebook post
07 September 2016 10:26
07 September 2016 16:16
08 September 2016 09:53
Thanks!
It worked when I replaced corresponding line in webplayer.html
http://kodu.ut.ee/~nils/source/hubble/webplayer.html?load=hubble_final.json&no_social
I also tried iframe version to keep the url simpler.
http://kodu.ut.ee/~nils/source/hubble/hubble.html
This way the image does not appear in FB post.
Is there a way in this case without actually putting visible image into my hubble.html?
It worked when I replaced corresponding line in webplayer.html
http://kodu.ut.ee/~nils/source/hubble/webplayer.html?load=hubble_final.json&no_social
I also tried iframe version to keep the url simpler.
http://kodu.ut.ee/~nils/source/hubble/hubble.html
This way the image does not appear in FB post.
Is there a way in this case without actually putting visible image into my hubble.html?
08 September 2016 12:20
In the second version you used
This effectively puts this meta tag outside the head of the HTML document.
Try something like this:
<head/><meta property="og:image" content="http://kodu.ut.ee/~nils/source/hubble/screenshot.jpg"/>
This effectively puts this meta tag outside the head of the HTML document.
Try something like this:
<head>
<meta property="og:image" content="http://kodu.ut.ee/~nils/source/hubble/screenshot.jpg"/>
</head>