From 7743073bac8df63e43c2cf40372c9fc8071b2759 Mon Sep 17 00:00:00 2001 From: apepenkov <39992738+apepenkov@users.noreply.github.com> Date: Thu, 21 May 2020 13:57:27 +0300 Subject: [PATCH] Update telethon_examples/README.md Co-authored-by: Lonami --- telethon_examples/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/telethon_examples/README.md b/telethon_examples/README.md index 1bfb6582..1e4d12b0 100644 --- a/telethon_examples/README.md +++ b/telethon_examples/README.md @@ -136,7 +136,9 @@ assumes some [`asyncio`] knowledge, but otherwise is easy to follow. * Difficulty: **medium**. This example shows how to make invoices (Telegram's way of requesting payments) via a bot account. The example does not include how to add shipping information, though. -You'll need to obtain provider token, more info [here](https://core.telegram.org/bots/payments) + +You'll need to obtain a "provider token" to use this example, so please read [Telegram's guide on payments](https://core.telegram.org/bots/payments) before using this example. + It makes use of the ["raw API"](https://tl.telethon.dev) (that is, no friendly `client.` methods), which can be helpful in understanding how it works and how it can be used.