I'm correctly posting a photo to my default album using the code below. Is there a way to add a comment/caption to that photo? Thanks.
Bitmap sourceBitmap = BitmapFactory.decodeFile(bitmapPath);
Request request = Request.newUploadPhotoRequest(session, sourceBitmap, new Callback() {
@Override
public void onCompleted(Response response) {
}
});
request.executeAsync();