1
I’m having trouble sharing a product from a Facebook store. I’m putting the meta tags on the product page:
<meta property='og:title'...
<meta property='og:url' ...
<meta property='og:site_name' ...
<meta property='og:type' content='website'/>
<meta property='og:image' ...
<meta property='og:description' ...
And the script I use to open the share window looks like this:
$("#btn_facebook").bind('click', function (event) {
var twtTitle = document.title;
var twtUrl = location.href;
var imagem = 'http://www.meusite.com.br' + $("#Share_Image").val();
var twtLink = 'http://www.facebook.com/sharer/sharer.php?u=' + twtUrl;
window.open(twtLink,'', '_blank', 'location=no, menubar=no, resizable=yes, width=575, height=520, fullscreen=yes, status=no, titlebar=no, toolbar=no');
});
It even opens the share window correctly with the photo and product description, but when I click on share, in the facebook post, all descriptions and text will go, but the image does not load and does not appear. Only a white board appears without the photo that before appeared.
Can anyone help me identify this problem or do you have a solution? Thank you, Alex
The image I’m trying to share is only 13kb, so the problem isn’t the weight of the image.
– Alex Cambuy
And with respect to this temporary instability of Facebook, I believe that is not the case, because I know several sites that are working.
– Alex Cambuy
Only yesterday the image of sharing the site came back to work, in my case...
– Marcelo Galvão