Package dev. inmo. tgbotapi. requests. webhook
Types
Delete Webhook
Link copied to clipboard
Get Webhook Info
Link copied to clipboard
Multipart Set Webhook Request
Link copied to clipboard
class MultipartSetWebhookRequest(url: String, certificate: MultipartFile, ipAddress: String?, maxAllowedConnections: Int?, allowedUpdates: List<String>?, dropPendingUpdates: Boolean?) : SetWebhookRequest, MultipartRequest<Boolean>
Content copied to clipboard
Set Webhook
Link copied to clipboard
Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update.
Set Webhook Request
Link copied to clipboard
Functions
Set Webhook
Link copied to clipboard
fun SetWebhook(url: String, ipAddress: String? = null, maxAllowedConnections: Int? = null, allowedUpdates: List<String>? = null, dropPendingUpdates: Boolean? = null): SetWebhook
Content copied to clipboard
fun SetWebhook(url: String, certificate: InputFile, ipAddress: String? = null, maxAllowedConnections: Int? = null, allowedUpdates: List<String>? = null, dropPendingUpdates: Boolean? = null): SetWebhookRequest
Content copied to clipboard
Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update.
fun SetWebhook(url: String, certificate: FileId, ipAddress: String? = null, maxAllowedConnections: Int? = null, allowedUpdates: List<String>? = null, dropPendingUpdates: Boolean? = null): SetWebhook
Content copied to clipboard
fun SetWebhook(url: String, certificate: MultipartFile, ipAddress: String? = null, maxAllowedConnections: Int? = null, allowedUpdates: List<String>? = null, dropPendingUpdates: Boolean? = null): MultipartSetWebhookRequest
Content copied to clipboard