Hello,
I am trying to use your new module. I was using the previous one with openweathermap. I can’t get any info display on the screen as you can seen below :
FYI : my API key is working well with the default weather module and i use you API airkey on your 1st module without any problems
If i do understand well in your ow.js, you use this 1st url : http://api.openweathermap.org/data/2.5/forecast/daily?lat=“+this.config.userlat+”&lon=“+this.config.userlon+”&units=imperial&appid="+this.config.apiKey;
At 1st sight : you missed the use of one variable. Should it be written like this : http://api.openweathermap.org/data/2.5/forecast/daily?lat=“+this.config.userlat+”&lon=“+this.config.userlon+”&units=“+this.config.units+”&appid="+this.config.apiKey; ?
Another thing : daily forcast are not allowed in free plan so this url won"t work with free plan. I tested it on my browser, to get the forcast I have to use : http://api.openweathermap.org/data/2.5/forecast?lat=“+this.config.userlat+”&lon=“+this.config.userlon+”&units=imperial&appid="+this.config.apiKey; -> i don’t have any idea if you retrieve the info needed in your parser.
Hope it helps to debug my problems :)
Thanks a lot for your work