I use the following function to post in background on user's facebook wall
public static void PublishToFeedInBackground(Bundle _postParameter)
{
final List<String> PERMISSIONS = Arrays.asList("publish_stream");
if (Session.getActiveSession() != null)
{
NewPermissionsRequest reauthRequest = new Session.NewPermissionsRequest(this.GetContext(), PERMISSIONS);
Session.getActiveSession().requestNewPublishPermissions(reauthRequest);
}
this.runOnUiThread(new Runnable()
{
@Override
public void run()
{
Request request = new Request(Session.getActiveSession(), "feed", _postParameter, HttpMethod.POST);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
}
});
}
According to android facebook sdk 3.0 permissions should be requested only when you are about to call specific actions that need the permissions. Hence i am asking permission right before i try to post on user's wall.
But first time i call this function the permission is set but feed is not posted to user's wall. But from second time onwards the feed is posted correctly since permission is already set when function is called the first time.
How can I post on facebook when I call this function the first time around.
me/feedinstead offeed– Shoshi Feb 27 at 10:42