Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have used the facebook sdk to post to the users wall but im now trying to see if its possible to post to a facebook fan page. I cannot find any documention on this so not sure if its even possible. here is the code im using, the wall post code works i have then tried to re-use it underneath:

    private void postStatusUpdate() {
        if (user != null && hasPublishPermission()) {
            final String message = fbmsg;
            Request request = Request
                    .newStatusUpdateRequest(Session.getActiveSession(), message, new Request.Callback() {
                        @Override
                        public void onCompleted(Response response) {
                            showPublishResult(message, response.getGraphObject(), response.getError());
                        }
                    });
            request.executeAsync();

            //START My Attempt to post to facebook page
            String graphPath = "/" + pageId + "/feed";

            Request pageRequest = Request.newPostRequest(Session.getActiveSession(), graphPath, request.getGraphObject(), new Request.Callback() {
                @Override
                public void onCompleted(Response response) {
                    showPublishResult(message, response.getGraphObject(), response.getError());

//END My attempt to post to wall no luck :(
                }
            });
            pageRequest.executeAsync();
        } else {
            pendingAction = PendingAction.POST_STATUS_UPDATE;
        }
    }

is this even possible? I'm struggling to get to gribs with facebook api, its pretty mad.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.