summaryrefslogtreecommitdiff
path: root/src/Api.cpp
AgeCommit message (Collapse)Author
2024-03-25Fix keyboard markup type in exditmessagetextpaulusel
2023-12-01Added ability to handle error codes from all Api requeststemomik
2023-07-02Revert "Revert "Repeat the http request on fail""Oleg Morozenkov
2023-06-05Revert "Repeat the http request on fail"Oleg Morozenkov
2023-05-11Merge pull request #262 from dmikushin/repeat-http-request-on-failOleg Morozenkov
Repeat the http request on fail
2023-05-06fix -Worder warningJohn Doe
2023-03-09Correcting the retry-able try-catch block placement: it must be the topmost ↵Dmitry Mikushin
in the retry loop, enclosing everything
2023-02-12Parameterizing the number of retries and backoff duration for ↵Dmitry Mikushin
HttpClient.makeRequest
2023-02-11Update to Bot API 6.5llnulldisk
2023-02-11Repeat the http request on fail, do not crash with an exception. This is a ↵Dmitry Mikushin
better design, because Telegram end point sometimes may not respond
2023-01-02Update to Bot API 6.4llnulldisk
2022-11-17Add missing args in webhooks operationsEugene Lykov
2022-11-05Update to Bot API 6.3llnulldisk
2022-10-23Pass strings not as references with boost::variant (#237)llnulldisk
2022-10-05Escape poll options (#128)llnulldisk
2022-10-05sendPoll: update default value (#234)llnulldisk
2022-09-20Fix #230llnulldisk
2022-09-20Add function to check if bot is blocked by userllnulldisk
2022-09-20Update API methodsllnulldisk
2022-09-14Update APIllnulldisk
2022-09-11Update to API 6.2llnulldisk
2022-09-11Update to API 6.1llnulldisk
2022-09-11Update to API 6.0llnulldisk
2022-09-09Update to API 5.7llnulldisk
2022-09-09Update to API 5.6llnulldisk
2022-09-04Update to API 5.5llnulldisk
2022-09-04Update to API 5.4llnulldisk
2022-09-04Update to API 5.3llnulldisk
2022-09-04Update to API 5.2llnulldisk
2022-09-04Optimise backward compatibilityllnulldisk
2022-09-04Update to API 5.1llnulldisk
2022-09-03Update to API 5.0llnulldisk
2022-08-31Add Telegram Passportllnulldisk
2022-08-31Fix #192llnulldisk
2022-08-30Restore the order of parameters in sendMessagellnulldisk
2022-08-30Update to API 4.8llnulldisk
2022-08-30Sort api methodsllnulldisk
2022-08-30Rework Bot API 4.7llnulldisk
2022-08-30Update to API 4.7llnulldisk
2022-08-29Update to API 4.6llnulldisk
2022-08-29Update to API 4.5llnulldisk
2021-12-03migrate(user-id): from 32-bit integer to 64-bit integerJellyBrick
fix #187, fix #186, fix #181
2021-07-11Channels supportDaniel Demidko
2020-11-08Add support to configure the API bot server urlNuno Esculcas
Now creating the bot class it is possible to override the API bot server url that defaults to: 'https://api.telegram.org' This enables you to connect your bot to the local API bot server.
2020-05-25* add SetMyCommand to the apisebest
2020-03-22Merge branch 'master' of github.com-egorpugin:reo7sp/tgbot-cppEgor Pugin
2020-03-22Fix header order.Egor Pugin
2020-03-17format: add missing headersAlexander Zaitsev
- add missing include headers in different part of tgbot-cpp library, remove unused includes Tested: - Local build
2020-03-14Fix #127, #128 & Code quality improvementsjellybrick
It seems that the author of this code misunderstood 'Array of PollOption' as 'PollOption'.
2020-03-13fix: use C++ fixed-width types instead of C typesAlexander Zaitsev
- C++ standard doesn't guarantee that C-types without std namespace are available in global namespace. So the proper solution (since it's C++ library) is using C++ types instead of C Tested: - Local build - By unit-tests