Answer the question
In order to leave comments, you need to log in
How to post single posts to facebook wall using facebook android sdk?
With the help of android facebook sdk, I will post on my facebook wall with the following code:
if (FacebookDialog.canPresentShareDialog(getApplicationContext(), FacebookDialog.ShareDialogFeature.SHARE_DIALOG)) {
FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(this)
.setLink("http://mylink")
.setPicture("http://picture_link.jpeg")
.setDescription("description")
.build();
uiHelper.trackPendingDialogCall(shareDialog.present());
} else {
}
Answer the question
In order to leave comments, you need to log in
I myself encountered a similar problem, the posts from the user's friends on the wall are grouped.
And sometimes they are displayed randomly from the grouping. It does not look like fighting spam, but a variety of feeds.
When trying to release the application, other troubles went with the design of the application content on Facebook itself, decided to cut out the sdk and used the usual system sharing from android.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question