Facebook stops custom parameters (image,title,description) through FB.ui?
Asked Answered
I

1

5

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.

Inness answered 26/4, 2019 at 15:30 Comment(1)
ref (1): #55902386 ref (2): #55930683 ref (3): #56006696 ... can anyone share this annonucement from FB?Parse
S
0

I've been having a hard time with this today as well and the solution for me was to remove the 'og:url': link from the open graph object and then it worked again. I only had url, title, description and image though.

Sunder answered 26/4, 2019 at 23:3 Comment(1)
Yes, without og:url it worked again, but after click successfully shared content on facebook, redirected on board url: example.com but shared picture and other content is not there :(Inness

© 2022 - 2024 — McMap. All rights reserved.