Skip Menu |

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

Report information
The Basics
Id: 46578
Status: new
Priority: 0/
Queue: Weather-Com

People
Owner: Nobody in particular
Requestors: blom [...] cpan.org
Cc:
AdminCc:

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



Weather.com now seems to require an extra parameter, breaking the current version of Weather::Com. From the signup mail (of weather.com): ---- Example: a properly formatted request for Current Conditions and a Five-Day forecast for Atlanta, Georgia from the Service will appear as follows: http://xoap.weather.com/weather/local/30339?cc=*&dayf=5&link=xoap&prod=xoap&par=[PartnerID]&key=[LicenseKey] ---- The fix is trivial. In Base.pm, simply add this 'link=xoap' (in two places!) like: $searchlocation .= '&prod=xoap&link=xoap'; -- B10m