如何使用我自己的帐户通过电报 API 向某人发送消息

How can I send a message to someone with telegram API using my own account

真是太棒了 google 当您找不到合适的词时,有些事情会很烦人。我找到了一百万个关于如何创建 Telegram Bot 来发送和接收消息的答案,这很容易,只需要写五行代码。

但是管理我自己的帐户怎么样?我想知道是否可以使用 Python(telepot 或其他库)来检索我的个人消息并从我的个人帐户发送消息,而不是使用机器人。

如果可能的话,我在哪里可以找到更多相关信息

Telegram 有详尽的记录 public API

点击那里的一些链接,这里是相关部分的摘要:

  • API 不限于机器人,它们只是一种(特殊)用户;
  • API has methods 称为 getMessagessendMessage,这应该是你需要的;
  • 要调用API,Telegram 推荐使用可用于多种编程语言的专用库TDLib
  • several examples available on GitHub

在这些例子中,如果你去Python部分,他们推荐:

If you use modern Python >= 3.6, take a look at python-telegram.

您会找到使用该库的说明,在 examples 文件夹中您可以找到 script to send a message.

为了完整起见,我将其复制到这里:

import logging
import argparse

from utils import setup_logging
from telegram.client import Telegram

"""
Sends a message to a chat
Usage:
    python examples/send_message.py api_id api_hash phone chat_id text
"""


if __name__ == '__main__':
    setup_logging(level=logging.INFO)

    parser = argparse.ArgumentParser()
    parser.add_argument('api_id', help='API id')  # https://my.telegram.org/apps
    parser.add_argument('api_hash', help='API hash')
    parser.add_argument('phone', help='Phone')
    parser.add_argument('chat_id', help='Chat id', type=int)
    parser.add_argument('text', help='Message text')
    args = parser.parse_args()

    tg = Telegram(
        api_id=args.api_id,
        api_hash=args.api_hash,
        phone=args.phone,
        database_encryption_key='changeme1234',
    )
    # you must call login method before others
    tg.login()

    # if this is the first run, library needs to preload all chats
    # otherwise the message will not be sent
    result = tg.get_chats()

    # `tdlib` is asynchronous, so `python-telegram` always returns you an `AsyncResult` object.
    # You can wait for a result with the blocking `wait` method.
    result.wait()

    if result.error:
        print(f'get chats error: {result.error_info}')
    else:
        print(f'chats: {result.update}')

    result = tg.send_message(
        chat_id=args.chat_id,
        text=args.text,
    )

    result.wait()
    if result.error:
        print(f'send message error: {result.error_info}')
    else:
        print(f'message has been sent: {result.update}')

当然,您需要浏览文档以了解您的情况下所有这些变量/ID 是什么,但这会让您入门!