select * from weather.forecast where woeid in (SELECT woeid FROM geo.placefinder WHERE text="30.7063633,76.7047791" and gflags="R")
我正在使用上面的 YQL 来获取一些 lat、lng 的天气状况,以显示在我的 iOS 应用程序中。响应有“pubDate”:
"pubDate": "Fri, 29 May 2015 8:30 am IST",
"condition": {
"code": "28",
"date": "Fri, 29 May 2015 8:30 am IST",
"temp": "89",
"text": "Mostly Cloudy"
我担心的是,这个“pubDate”会改变吗?我的意思是早上 8 点 30 分天气多云,可能中午 12 点就不会了。如果我在中午 12 点访问此 YQL,响应将相同??
另外,我不知道查询的“and gflags="R"" 部分..