sauravtom / android-query

Automatically exported from code.google.com/p/android-query
0 stars 0 forks source link

Json Interpretation missmatch #172

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. call this URL : String URL 
="http://api.openweathermap.org/data/2.5/forecast/daily?lat=41.330098&lon=19.815
546&mode=json&cnt=4";
2. aq.progress(dialog).ajax(URL,JSONObject.class, new AjaxCallback<JSONObject>()
3. public void callback(String url, JSONObject jobj, AjaxStatus status) 
{Log.e("api.openweathermap.org","JOBJ: "+jobj);....

What is the expected output? What do you see instead?
The expected output is the same as the one i get from using the browser to get 
the json

What version of the product are you using? On what operating system?

the version i ma using is: android-query-full.0.25.9.jar

Please provide any additional information below.
I have tried to call the service from my android app without using AndroidQuery 
and in that case i get the right output(browser and app output is the same 
without AndroidQuery)

Original issue reported on code.google.com by ru...@eng.al on 15 Jan 2014 at 1:22