/**
  * Post photo with message to social network
  *
  * @param photo photo that should be shared
  * @param message message that should be shared with photo
  * @param onPostingCompleteListener listener for posting request
  */
 @Override
 public void requestPostPhoto(
     File photo, String message, OnPostingCompleteListener onPostingCompleteListener) {
   super.requestPostPhoto(photo, message, onPostingCompleteListener);
   Bundle args = new Bundle();
   args.putString(RequestUpdateStatusAsyncTask.PARAM_MESSAGE, message);
   args.putString(RequestUpdateStatusAsyncTask.PARAM_PHOTO_PATH, photo.getAbsolutePath());
   executeRequest(new RequestUpdateStatusAsyncTask(), args, REQUEST_POST_PHOTO);
 }