Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
try me/feed instead of feed – Shoshi Feb 27 at 10:42
remember, u cannot post to user's friends wall using graph-api anymore. u can only post to user's wall using graph-api.developers.facebook.com/roadmap/completed-changes/… – Shoshi Feb 27 at 10:56
I am trying to post on users wall and not friend's wall. The function i used works properly from second time onwards as permission is already set then – glo Feb 27 at 11:26
@rds i do not think that is the answer to my question – glo Feb 27 at 11:27
me/feed does not work anymore – glo Feb 27 at 14:03
show 6 more comments

1 Answer

bundle = new Bundle();
bundle.putString("message", msg);
Session session = Session.getActiveSession();

if(session != null){
    Request.Callback callback= new Request.Callback() {
        public void onCompleted(Response response) {
            FacebookRequestError error = response.getError();
            if (error != null) {
                Toast.makeText(context, "Failed to Post", Toast.LENGTH_LONG).show();
            } else {
                Toast.makeText(context, "Successfully Posted", Toast.LENGTH_LONG).show();
            }
        }
    };
Request request = new Request(session, "me/feed", bundle,
                              HttpMethod.POST, callback);

RequestAsyncTask task = new RequestAsyncTask(request);

task.execute();

i have used this to post on user's wall.

Edited:

you can also use this technique which is described in Facebook SDK 3.02 (Request.java) :

public static RequestAsyncTask executeStatusUpdateRequestAsync(Session session, String message, Callback callback) {
        return newStatusUpdateRequest(session, message, callback).executeAsync();
}

i haven't used it, but it may be called like:

Request.executeStatusUpdateRequestAsync(Session.getActiveSession(), your_msg, callback);

use the callback i have descrribed in top.

for permission:

private final List<String> PERMISSIONS = Arrays.asList("publish_actions");
private final int REAUTH_ACTIVITY_CODE = 100;

Session session = Session.getActiveSession();

Session.ReauthorizeRequest reauthRequest = new Session
    .ReauthorizeRequest(getActivity() or getApplicationContext(), PERMISSIONS)
    .setRequestCode(REAUTH_ACTIVITY_CODE);
session.reauthorizeForPublish(reauthRequest);

you can check the permission u have asked is granted or not by:

    List<String> permissions = session.getPermissions();
        if (!permissions.containsAll(PERMISSIONS)) {
           //that means u have to reAuth for permission again
        }else{
           // your permissionis granted
        }
share|improve this answer
Like i said me/feed does not work properly. It used to work but it stopped working proper about few weeks ago. My problem is that I cant ask permission and post feed one after the other in same function. – glo Feb 27 at 14:34
@glo : see my edited part in answer. – Shoshi Feb 27 at 14:48
what data is in your _postParameter? – Shoshi Feb 27 at 14:52
the function you posted is to update user status and i dont want to restart my session to add a new permission. – glo Feb 27 at 15:01
I just want to know if there is a way to know when a new permission has been set. like an onComplete listner – glo Feb 27 at 15:02
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.