public void sendPhotoMessage(String chatId, String id, String caption) throws TelegramApiException {
SendPhoto msg = new SendPhoto();
msg.setChatId(chatId);
msg.setPhoto("");
msg.setCaption("Photo");
execute(msg);
}