2019-11-16 22:32:05 +02:00
|
|
|
# deleteWebhook
|
|
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
|
|
|
|
|
Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success. Requires no parameters.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Response
|
|
|
|
|
|
|
|
|
|
Type: `#!python3 bool`
|
|
|
|
|
|
|
|
|
|
Description: Returns True on success.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### As bot method bot
|
|
|
|
|
|
|
|
|
|
```python3
|
|
|
|
|
result: bool = await bot.delete_webhook(...)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Method as object
|
|
|
|
|
|
|
|
|
|
Imports:
|
|
|
|
|
|
2019-12-11 16:52:21 +02:00
|
|
|
- `from aiogram.methods import DeleteWebhook`
|
|
|
|
|
- `from aiogram.api.methods import DeleteWebhook`
|
|
|
|
|
- `from aiogram.api.methods.delete_webhook import DeleteWebhook`
|
2019-11-16 22:32:05 +02:00
|
|
|
|
2020-01-24 01:07:22 +02:00
|
|
|
#### In handlers with current bot
|
2019-11-16 22:32:05 +02:00
|
|
|
```python3
|
2020-01-11 22:59:14 +02:00
|
|
|
result: bool = await DeleteWebhook(...)
|
2019-11-16 22:32:05 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### With specific bot
|
|
|
|
|
```python3
|
2020-01-11 22:59:14 +02:00
|
|
|
result: bool = await bot(DeleteWebhook(...))
|
2019-11-16 22:32:05 +02:00
|
|
|
```
|
2020-01-11 22:59:14 +02:00
|
|
|
#### As reply into Webhook in handler
|
2019-11-16 22:32:05 +02:00
|
|
|
```python3
|
2020-01-11 22:59:14 +02:00
|
|
|
return DeleteWebhook(...)
|
2019-11-16 22:32:05 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2020-01-11 22:59:14 +02:00
|
|
|
|
2019-11-16 22:32:05 +02:00
|
|
|
## Related pages:
|
|
|
|
|
|
|
|
|
|
- [Official documentation](https://core.telegram.org/bots/api#deletewebhook)
|