io.github.dehuckakpyt.telegrambot.ext.TelegramBotExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-core Show documentation
Show all versions of telegram-bot-core Show documentation
Kotlin Telegram Bot library
The newest version!
package io.github.dehuckakpyt.telegrambot.ext
import io.github.dehuckakpyt.telegrambot.TelegramBot
import io.github.dehuckakpyt.telegrambot.exception.api.TelegramBotApiException
import io.ktor.client.statement.*
/**
* Created on 23.07.2023.
*
*
* @author Denis Matytsin
*/
suspend fun TelegramBot.downloadByPath(filePath: String): HttpResponse {
return client.getFileApi(filePath)
}
suspend fun TelegramBot.downloadById(fileId: String): HttpResponse {
val fileInfo = getFile(fileId)
val filePath = fileInfo.filePath ?: throw TelegramBotApiException("Failed download file. FilePath is null for file $fileInfo.")
return downloadByPath(filePath)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy