I’m using the Facebook PHP Api to post links to fan pages and user news feeds. All of this works 100%. Recently, I discovered that my “Share” action in posts aren’t there anymore. I’ve only got “Like” and “Comment”.
Could anyone please help me get the “Share” link back or alternatively point me in the right direction of using the “actions” argument to get that up and running again?
Thanking you all in advance,
After doing some extensive research and trolling the net like a mad man, I found the solution.
Post to facebook wall using API Graph and missing share button
https://developers.facebook.com/bugs/335325956484296
In a nutshell :
When posting to facebook (‘/me/feed’, ‘POST’, …) the share link will not be visible, but when posting to (‘/me/links’, ‘POST’, …) the share link will be visible. Keep your post details exactly the same just change the ‘feed’ to ‘links’ and the share button will be visible.
Really hope that this could safe someone else a lot of headaches as well!