mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
46 lines
831 B
ReStructuredText
46 lines
831 B
ReStructuredText
#######
|
|
getChat
|
|
#######
|
|
|
|
Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). Returns a Chat object on success.
|
|
|
|
Returns: :obj:`Chat`
|
|
|
|
.. automodule:: aiogram.api.methods.get_chat
|
|
:members:
|
|
|
|
|
|
Usage
|
|
=====
|
|
|
|
As bot method
|
|
-------------
|
|
|
|
.. code-block::
|
|
|
|
result: Chat = await bot.get_chat(...)
|
|
|
|
|
|
Method as object
|
|
----------------
|
|
|
|
Imports:
|
|
|
|
- :code:`from aiogram.methods import GetChat`
|
|
- :code:`from aiogram.api.methods import GetChat`
|
|
- :code:`from aiogram.api.methods.get_chat import GetChat`
|
|
|
|
In handlers with current bot
|
|
----------------------------
|
|
|
|
.. code-block::
|
|
|
|
result: Chat = await GetChat(...)
|
|
|
|
With specific bot
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
.. code-block::
|
|
|
|
result: Chat = await bot(GetChat(...))
|
|
|