Using the sdk facebook-android-sdk-3.0.2.b, download in the Facebook page Developer, im trying to publish a photo to page but no sucess...
private void postPhoto(Bitmap b) {
if (hasPublishPermission()) {
Request request = Request.newUploadPhotoRequest(Session.getActiveSession(), b, new Request.Callback() {
@Override
public void onCompleted(Response response) {}
});
Request.executeBatchAsync(request);
} else {
pendingAction = PendingAction.POST_PHOTO;
}
}
the only way that i found using this sdk is publish to my profile, not in my page...
anyone knows how can i do this using this sdk ?
i apreciate the help.