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.