|
NAMEWWW::Telegram::BotAPI - Perl implementation of the Telegram Bot APISYNOPSISuse WWW::Telegram::BotAPI; my $api = WWW::Telegram::BotAPI->new ( token => 'my_token' ); # The API methods die when an error occurs. say $api->getMe->{result}{username}; # ... but error handling is available as well. my $result = eval { $api->getMe } or die 'Got error message: ', $api->parse_error->{msg}; # Uploading files is easier than ever. $api->sendPhoto ({ chat_id => 123456, photo => { file => '/home/me/cool_pic.png' }, caption => 'Look at my cool photo!' }); # Complex objects are as easy as writing a Perl object. $api->sendMessage ({ chat_id => 123456, # Object: ReplyKeyboardMarkup reply_markup => { resize_keyboard => \1, # \1 = true when JSONified, \0 = false keyboard => [ # Keyboard: row 1 [ # Keyboard: button 1 'Hello world!', # Keyboard: button 2 { text => 'Give me your phone number!', request_contact => \1 } ] ] } }); # Asynchronous request are supported with Mojo::UserAgent. $api = WWW::Telegram::BotAPI->new ( token => 'my_token', async => 1 # WARNING: may fail if Mojo::UserAgent is not available! ); $api->sendMessage ({ chat_id => 123456, text => 'Hello world!' }, sub { my ($ua, $tx) = @_; die 'Something bad happened!' unless $tx->success; say $tx->res->json->{ok} ? 'YAY!' : ':('; # Not production ready! }); Mojo::IOLoop->start; DESCRIPTIONThis module provides an easy to use interface for the Telegram Bot API <https://core.telegram.org/bots/api>. It also supports async requests out of the box using Mojo::UserAgent, which makes this module easy to integrate with an existing Mojolicious application.METHODSWWW::Telegram::BotAPI implements the following methods.newmy $api = WWW::Telegram::BotAPI->new (%options); Creates a new WWW::Telegram::BotAPI instance. WARNING: you should only create one instance of this module and reuse it when needed. Calling "new" each time you run an async request causes unexpected behavior with Mojo::UserAgent and won't work correctly. See also issue #13 on GitHub <https://github.com/Robertof/perl-www-telegram-botapi/issues/13>. %options may contain the following:
AUTOLOAD$api->getMe; $api->sendMessage ({ chat_id => 123456, text => 'Hello world!' }); # with async => 1 and the IOLoop already started $api->setWebhook ({ url => 'https://example.com/webhook' }, sub { my ($ua, $tx) = @_; die unless $tx->success; say 'Webhook set!' }); This module makes use of "Autoloading" in perlsub. This means that every current and future method of the Telegram Bot API can be used by calling its Perl equivalent, without requiring an update of the module. If you'd like to avoid using "AUTOLOAD", then you may simply call the "api_request" method specifying the method name as the first argument. $api->api_request ('getMe'); This is, by the way, the exact thing the "AUTOLOAD" method of this module does. api_request# Remember: each of these samples can be aliased with # $api->methodName ($params). $api->api_request ('getMe'); $api->api_request ('sendMessage', { chat_id => 123456, text => 'Oh, hai' }); # file upload $api->api_request ('sendDocument', { chat_id => 123456, document => { filename => 'dump.txt', content => 'secret stuff' } }); # complex objects are supported natively since v0.04 $api->api_request ('sendMessage', { chat_id => 123456, reply_markup => { keyboard => [ [ 'Button 1', 'Button 2' ] ] } }); # with async => 1 and the IOLoop already started $api->api_request ('getMe', sub { my ($ua, $tx) = @_; die unless $tx->success; # ... }); This method performs an API request. The first argument must be the method name (here's a list <https://core.telegram.org/bots/api#available-methods>). Once the request is completed, the response is decoded using JSON::MaybeXS and then returned. If Mojo::UserAgent is used as the user-agent, then the response is decoded automatically using Mojo::JSON. If the request is not successful or the server tells us something isn't "ok", then this method dies with the first available error message (either the error description or the status line). You can make this method non-fatal using "eval": my $response = eval { $api->api_request ($method, $args) } or warn "Request failed with error '$@', but I'm still alive!"; Further processing of error messages can be obtained using "parse_error". Request parameters can be specified using an hash reference. Additionally, complex objects can be specified like you do in JSON. See the previous examples or the example bot provided in "SEE ALSO". File uploads can be specified using an hash reference containing the following mappings:
Upload of multiple files is not supported. See "tx" in Mojo::UserAgent::Transactor for more information about file uploads. To resend files, you don't need to perform a file upload at all. Just pass the ID as a normal parameter. $api->sendPhoto ({ chat_id => 123456, photo => $photo_id }); When asynchronous requests are enabled, a callback can be specified as an argument. The arguments passed to the callback are, in order, the user-agent (a Mojo::UserAgent object) and the response (a Mojo::Transaction::HTTP object). More information can be found in the documentation of Mojo::UserAgent and Mojo::Transaction::HTTP. NOTE: ensure that the event loop Mojo::IOLoop is started when using asynchronous requests. This is not needed when using this module inside a Mojolicious app. The order of the arguments, except of the first one, does not matter: $api->api_request ('sendMessage', $parameters, $callback); $api->api_request ('sendMessage', $callback, $parameters); # same thing! parse_errorunless (eval { $api->doSomething(...) }) { my $error = $api->parse_error; die "Unknown error: $error->{msg}" if $error->{type} eq 'unknown'; # Handle error gracefully using "type", "msg" and "code" (optional) } # Or, use it with a custom error message. my $error = $api->parse_error ($message); When sandboxing calls to WWW::Telegram::BotAPI methods using "eval", it is useful to parse error messages using this method. WARNING: up until version 0.09, this method incorrectly stopped at the first occurence of "at" in error messages, producing results such as "missing ch" instead of "missing chat". This method accepts an error message as its first argument, otherwise $@ is used. An hash reference containing the following elements is returned:
agentmy $user_agent = $api->agent; Returns the instance of the user-agent used by the module. You can determine if the module is using LWP::UserAgent or Mojo::UserAgent by using "isa": my $is_lwp = $user_agent->isa ('LWP::UserAgent'); DEBUGGINGTo perform some cool troubleshooting, you can set the environment variable "TELEGRAM_BOTAPI_DEBUG" to a true value:TELEGRAM_BOTAPI_DEBUG=1 perl script.pl This dumps the content of each request and response in a friendly, human-readable way. It also prints the version and the configuration of the module. As a security measure, the bot's token is automatically removed from the output of the dump. WARNING: using this option along with an old Mojolicious version (< 6.22) leads to a warning, and forces LWP::UserAgent instead of Mojo::UserAgent. This is because Mojo::JSON used incompatible boolean values up to version 6.21, which led to an horrible death of JSON::MaybeXS when serializing the data. CAVEATSWhen asynchronous mode is enabled, no error handling is performed. You have to do it by yourself as shown in the "SYNOPSIS".SEE ALSOLWP::UserAgent, Mojo::UserAgent, <https://core.telegram.org/bots/api>, <https://core.telegram.org/bots>, example implementation of a Telegram bot <https://git.io/vlOK0>, example implementation of an async Telegram bot <https://git.io/vDrwL>AUTHORRoberto Frenna (robertof AT cpan DOT org)BUGSPlease report any bugs or feature requests to <https://github.com/Robertof/perl-www-telegram-botapi>.THANKSThanks to the authors of Mojolicious for inspiration about the license and the documentation.LICENSECopyright (C) 2015, Roberto Frenna.This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.
Visit the GSP FreeBSD Man Page Interface. |