var query = 'select * from xml where url="http://news.yahoo.com/rss/topstories"';
Ti.Yahoo.yql(query, function(e){
alert(e);
});
on YQL console (
http://y.ahoo.it/twEg3), the query above returns a valid response with data in it.
But on iOS simulator (64 bit), it produces an alert box which its height fills the entire simulator screen as if there's data in it. But it doesn't have anything in it.
I tried different queries such as this one:
select * from geo.countries where place="North America"
The same result occurs. The response gives back null/empty.
However, when I try it using a query against flickr service, it works
select * from flickr.photos.search where has_geo="true" and text="san francisco" and api_key = "MY_API_KEY"
This is working. The alert is not big enough, nor have scrolling for showing the output. add this Ti.API.info(e) to the callback:
and you will see the right output in the console.
Invalid issue.