Skip to content Skip to sidebar Skip to footer

How To Reshare A Facebook Post

i want to reshare a facebook post by letting my visitors go to some url and press share. I looked into sharer.php and https://www.facebook.com/dialog/feed but both seem to only giv

Solution 1:

I've seen a post where someone was trying to do the same, unfortunately this is not possible with current API. You can only get the Post (with the post ID, if is public or with access token), scrape the information and create a new one.

Solution 2:

David Crissc Reinberger is right that i can't reshare a post in a way that increments the share count.

Still there is a way to reshare a post that is a photo which increments the share count of the photo post:

This way you will really reshare the image and also increment the share count of the image post.

Solution 3:

As you said, Facebook wont let you rehsrae their photo.

But using a proxy you can do that. And proxy gives you the flexibility to choose between sharer, or feed dialog.

Feed dialog fits better mobile web apps. Faster amd have better UI. Sharer don`t exist on mobile web apps.

https://images.weserv.nl/ does the job. Facebook accept the image as a picture param, and this way you are able to reshare thier posts.

Usage example (plus width and hight to improve performance)

'https://images.weserv.nl/?url=' + facebookImageUrl + '&h=200&w=200'

Post a Comment for "How To Reshare A Facebook Post"