I currently have an Android app that allows users to share posts of a Facebook page.
I am successful in sharing these posts to the user's wall and it looks exactly like a regular share except for the fact that the original post share count does not increase.
CODE:
...
Bundle params = new Bundle();
params.putString("message", msg);
params.putString("link", permalink);
Request request = new Request(Session.getActiveSession(), "me/feed", params, HttpMethod.POST);
...
where permalink
is obtained using FQL query from the stream table
As mentioned, this looks exacly like a regular share but has no effect on share count...
Is there a way to do a proper share?
Thanks.