com.pengrad.telegrambot.impl.FileApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.impl;
/**
* Stas Parshin
* 16 October 2015
*/
public class FileApi {
public static final String FILE_API = "https://api.telegram.org/file/bot";
private final String apiUrl;
public FileApi(String token) {
this.apiUrl = FILE_API + token + "/";
}
public String getFullFilePath(String filePath) {
return apiUrl + filePath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy