Skip Menu |

This queue is for tickets about the Weather-Com CPAN distribution.

Report information
The Basics
Id: 35758
Status: rejected
Priority: 0/
Queue: Weather-Com

People
Owner: SCHNUECK [...] cpan.org
Requestors: Dan [...] DWright.Org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.5.3
Fixed in: (no value)



Subject: Change in weather.com API?
A couple days ago, a script of mine that has been using Weather::Com::Simple (and Weather::Simple before that) mysteriously started crashing with the error: Weather::Com::Cached: ERROR Bad or missing query parameters in request. Has weather.com changed something about their API? Here's a simple code snippit that demonstrates the error: use Weather::Com::Simple; my %weather_args = ( 'cache' => 'weathercache', 'partner_id' => '**********', 'license' => '****************', place => '15626', ); my $weather = Weather::Com::Simple->new( %weather_args ); my $result = eval { $weather->get_weather(); }; if ( $@ ) { die "Died with '$@'" }
This is same as ticket #35681.