All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pengrad.telegrambot.impl.FileApi Maven / Gradle / Ivy

There is a newer version: 7.11.0
Show newest version
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