gongxingx
Results
1
issues of
gongxingx
src/app/weather/weather.cpp ``` #define WEATHER_APP_NAME "Weather" #define WEATHER_NOW_API "https://www.yiketianqi.com/free/day?appid=%s&appsecret=%s&unescape=1&city=%s" // v1.yiketianqi.com/api?unescape=1&version=v61 #define WEATHER_NOW_API_UPDATE "https://%s&appid=%s&appsecret=%s&city=%s" #define WEATHER_DALIY_API "https://www.yiketianqi.com/free/week?unescape=1&appid=%s&appsecret=%s&city=%s" #define TIME_API "http://api.m.taobao.com/rest/api3.do?api=mtop.common.gettimestamp" #define WEATHER_PAGE_SIZE 2 #define UPDATE_WEATHER 0x01 // 更新天气 #define UPDATE_DALIY_WEATHER 0x02...