mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Add docs for Dispatcher
This commit is contained in:
parent
8ebbfb1388
commit
7245811c3c
197 changed files with 872 additions and 19 deletions
|
|
@ -1,64 +0,0 @@
|
|||
##########
|
||||
setWebhook
|
||||
##########
|
||||
|
||||
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. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns True on success.
|
||||
|
||||
If you'd like to make sure that the Webhook request comes from Telegram, we recommend using a secret path in the URL, e.g. https://www.example.com/<token>. Since nobody else knows your bot's token, you can be pretty sure it's us.
|
||||
|
||||
Notes
|
||||
|
||||
1. You will not be able to receive updates using getUpdates for as long as an outgoing webhook is set up.
|
||||
|
||||
2. To use a self-signed certificate, you need to upload your public key certificate using certificate parameter. Please upload as InputFile, sending a String will not work.
|
||||
|
||||
3. Ports currently supported for Webhooks: 443, 80, 88, 8443.
|
||||
|
||||
NEW! If you're having any trouble setting up webhooks, please check out this amazing guide to Webhooks.
|
||||
|
||||
Returns: :obj:`bool`
|
||||
|
||||
.. automodule:: aiogram.api.methods.set_webhook
|
||||
:members:
|
||||
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
As bot method
|
||||
-------------
|
||||
|
||||
.. code-block::
|
||||
|
||||
result: bool = await bot.set_webhook(...)
|
||||
|
||||
|
||||
Method as object
|
||||
----------------
|
||||
|
||||
Imports:
|
||||
|
||||
- :code:`from aiogram.methods import SetWebhook`
|
||||
- :code:`from aiogram.api.methods import SetWebhook`
|
||||
- :code:`from aiogram.api.methods.set_webhook import SetWebhook`
|
||||
|
||||
In handlers with current bot
|
||||
----------------------------
|
||||
|
||||
.. code-block::
|
||||
|
||||
result: bool = await SetWebhook(...)
|
||||
|
||||
With specific bot
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
.. code-block::
|
||||
|
||||
result: bool = await bot(SetWebhook(...))
|
||||
|
||||
As reply into Webhook in handler
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
.. code-block::
|
||||
|
||||
return SetWebhook(...)
|
||||
Loading…
Add table
Add a link
Reference in a new issue