X-Git-Url: http://git.shiar.nl/sc2-widget/blobdiff_plain/72f5c887236708189bf8cc86b60b932617c3c756..8c443d69c70317d0a47cd980da764dedd3b98380:/getsc2clan diff --git a/getsc2clan b/getsc2clan index f3df754..60cbc1a 100755 --- a/getsc2clan +++ b/getsc2clan @@ -14,14 +14,14 @@ $profileid and $profileid =~ /\A\d+\z/ my %auth = do './.blizzard.passwd.pl' or die "no auth setup: $!\n"; my $bliz = LWP::Authen::OAuth2->new(%auth, - token_endpoint => 'https://us.battle.net/oauth/token', + token_endpoint => 'https://eu.battle.net/oauth/token', request_required_params => [qw( client_id client_secret grant_type )], ); $bliz->request_tokens(grant_type => 'client_credentials'); sub blizget { my $args = join('/', @_); - my $res = $bliz->get("https://us.api.blizzard.com/sc2/$args"); + my $res = $bliz->get("https://eu.api.blizzard.com/sc2/$args"); $res->is_success or die $res->status_line; my $json = $res->decoded_content; return decode_json($json);