Today I check my site and this code not working:
<script>
...
FB.ui({
display: 'dialog',
method: 'share_open_graph',
action_type: 'og.likes',
hashtag: '#Testing',
action_properties: JSON.stringify({
object: {
'og:image': img,
'og:image:secure_url': img,
'og:image:type': 'image/jpeg',
'og:image:width': w,
'og:image:height': h,
'og:image:alt': img,
'og:url': link,
'og:title': title,
'og:description': desc,
'fb:admins': fbadmin
}
})
},
function(response) {
if (typeof response != 'undefined') {
//Success
} else {
//Not Success;
}
});
</script>
With this code, from https://developers.facebook.com/docs/sharing/reference/share-dialog/ :
FB.ui({
method: 'share',
href: link,
}, function(response){});
Facebook sees and takes a picture of the link, but not the picture that I need share.
Apparently FB changed policy of sharing.
How to now I can customize paramateres for sharing? How to I can set custom image if this link has a lot of pictures?
Edited
Without og:url it worked again, but after click successfully shared content on facebook, redirected on board url, not on url that I need share.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…