Helper methods for Twitch's "new" helix API
use Net::Twitch::API;
my $api = Net::Twitch::API->new(
access_token => 'your-token',
client_id => 'your-id',
debug => 1,
);
my $response = $api->getUsers({ login => 'twitchdev' });
This module provides methods and helper wrappers to work with what Twitch "new" helix API.
Please note:
This here is only a short github placeholder README. More information about this module can be found in the POD embedded in source code. So, please hop over to cpan for the canonical documentation.
via CPAN (official releases):
sudo cpan -i Net::Twitch::API
from command-line (latest changes, if any):
wget https://github.com/clipland/net-twitch-api/archive/master.tar.gz
tar xvf master.tar.gz
cd net-twitch-api-main
perl Makefile.PL
make
make test
sudo make install
Clipland GmbH, clipland.com
This module was developed for "Sendung verpasst? video search engine MediathekSuche.de.
Copyright 2022 Clipland GmbH. All rights reserved.
This library is free software, dual-licensed under GPLv3/AL2. You can redistribute it and/or modify it under the same terms as Perl itself.