Google directions api zero_results only on Android
up vote
0
down vote
favorite
I've builded a simple app in Android where I use Google Maps directions api.
In my code I make a Volley request and it works, but almost always it response ZERO_RESULTS.
But if I copy the value of the uri and I paste it into browser, it response some result.
Here is my code
RequestQueue requestQueue = Volley.newRequestQueue(this);
String uri = null;
uri = "https://maps.googleapis.com/maps/api/directions/json?" +
"origin=" + partenza + "&" +
"destination=" + arrivo +
"&waypoints=optimize:true";
for(int i = 0; i<tappe.size();i++)
uri = uri.concat("
uri = uri + "&key=" + getString(R.string.google_maps_key);
uri = Uri.parse(uri).buildUpon()
.build().toString();
JsonObjectRequest stringRequest = new JsonObjectRequest(
Request.Method.POST, uri, null, new Response.Listener<JSONObject>()
@Override
public void onResponse(JSONObject response)
try
JSONObject obj = new JSONObject(String.valueOf(response));
JSONArray cast = obj.getJSONArray("routes");
if(obj.getString("status").equals("ZERO_RESULTS"))
Toast.makeText(TragittoActivity.this, "Impossibile trovare soluzione", Toast.LENGTH_SHORT).show();
finish();
for (int i=0; i<cast.length(); i++)
JSONObject news = cast.getJSONObject(i);
JSONArray legs = news.getJSONArray("legs");
for (int j=0; j<legs.length(); j++)
String start = legs.getJSONObject(j).getString("start_address");
String end = legs.getJSONObject(j).getString("end_address");
catch (JSONException e)
e.printStackTrace();
, new Response.ErrorListener()
@Override
public void onErrorResponse(VolleyError error)
Log.e("VolleyError", error.toString());
)
;
requestQueue.add(stringRequest);
How can I resolve this problem?
Are any differences between web call and Android call?
add a comment |
up vote
0
down vote
favorite
I've builded a simple app in Android where I use Google Maps directions api.
In my code I make a Volley request and it works, but almost always it response ZERO_RESULTS.
But if I copy the value of the uri and I paste it into browser, it response some result.
Here is my code
RequestQueue requestQueue = Volley.newRequestQueue(this);
String uri = null;
uri = "https://maps.googleapis.com/maps/api/directions/json?" +
"origin=" + partenza + "&" +
"destination=" + arrivo +
"&waypoints=optimize:true";
for(int i = 0; i<tappe.size();i++)
uri = uri.concat("
uri = uri + "&key=" + getString(R.string.google_maps_key);
uri = Uri.parse(uri).buildUpon()
.build().toString();
JsonObjectRequest stringRequest = new JsonObjectRequest(
Request.Method.POST, uri, null, new Response.Listener<JSONObject>()
@Override
public void onResponse(JSONObject response)
try
JSONObject obj = new JSONObject(String.valueOf(response));
JSONArray cast = obj.getJSONArray("routes");
if(obj.getString("status").equals("ZERO_RESULTS"))
Toast.makeText(TragittoActivity.this, "Impossibile trovare soluzione", Toast.LENGTH_SHORT).show();
finish();
for (int i=0; i<cast.length(); i++)
JSONObject news = cast.getJSONObject(i);
JSONArray legs = news.getJSONArray("legs");
for (int j=0; j<legs.length(); j++)
String start = legs.getJSONObject(j).getString("start_address");
String end = legs.getJSONObject(j).getString("end_address");
catch (JSONException e)
e.printStackTrace();
, new Response.ErrorListener()
@Override
public void onErrorResponse(VolleyError error)
Log.e("VolleyError", error.toString());
)
;
requestQueue.add(stringRequest);
How can I resolve this problem?
Are any differences between web call and Android call?
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I've builded a simple app in Android where I use Google Maps directions api.
In my code I make a Volley request and it works, but almost always it response ZERO_RESULTS.
But if I copy the value of the uri and I paste it into browser, it response some result.
Here is my code
RequestQueue requestQueue = Volley.newRequestQueue(this);
String uri = null;
uri = "https://maps.googleapis.com/maps/api/directions/json?" +
"origin=" + partenza + "&" +
"destination=" + arrivo +
"&waypoints=optimize:true";
for(int i = 0; i<tappe.size();i++)
uri = uri.concat("
uri = uri + "&key=" + getString(R.string.google_maps_key);
uri = Uri.parse(uri).buildUpon()
.build().toString();
JsonObjectRequest stringRequest = new JsonObjectRequest(
Request.Method.POST, uri, null, new Response.Listener<JSONObject>()
@Override
public void onResponse(JSONObject response)
try
JSONObject obj = new JSONObject(String.valueOf(response));
JSONArray cast = obj.getJSONArray("routes");
if(obj.getString("status").equals("ZERO_RESULTS"))
Toast.makeText(TragittoActivity.this, "Impossibile trovare soluzione", Toast.LENGTH_SHORT).show();
finish();
for (int i=0; i<cast.length(); i++)
JSONObject news = cast.getJSONObject(i);
JSONArray legs = news.getJSONArray("legs");
for (int j=0; j<legs.length(); j++)
String start = legs.getJSONObject(j).getString("start_address");
String end = legs.getJSONObject(j).getString("end_address");
catch (JSONException e)
e.printStackTrace();
, new Response.ErrorListener()
@Override
public void onErrorResponse(VolleyError error)
Log.e("VolleyError", error.toString());
)
;
requestQueue.add(stringRequest);
How can I resolve this problem?
Are any differences between web call and Android call?
I've builded a simple app in Android where I use Google Maps directions api.
In my code I make a Volley request and it works, but almost always it response ZERO_RESULTS.
But if I copy the value of the uri and I paste it into browser, it response some result.
Here is my code
RequestQueue requestQueue = Volley.newRequestQueue(this);
String uri = null;
uri = "https://maps.googleapis.com/maps/api/directions/json?" +
"origin=" + partenza + "&" +
"destination=" + arrivo +
"&waypoints=optimize:true";
for(int i = 0; i<tappe.size();i++)
uri = uri.concat("
uri = uri + "&key=" + getString(R.string.google_maps_key);
uri = Uri.parse(uri).buildUpon()
.build().toString();
JsonObjectRequest stringRequest = new JsonObjectRequest(
Request.Method.POST, uri, null, new Response.Listener<JSONObject>()
@Override
public void onResponse(JSONObject response)
try
JSONObject obj = new JSONObject(String.valueOf(response));
JSONArray cast = obj.getJSONArray("routes");
if(obj.getString("status").equals("ZERO_RESULTS"))
Toast.makeText(TragittoActivity.this, "Impossibile trovare soluzione", Toast.LENGTH_SHORT).show();
finish();
for (int i=0; i<cast.length(); i++)
JSONObject news = cast.getJSONObject(i);
JSONArray legs = news.getJSONArray("legs");
for (int j=0; j<legs.length(); j++)
String start = legs.getJSONObject(j).getString("start_address");
String end = legs.getJSONObject(j).getString("end_address");
catch (JSONException e)
e.printStackTrace();
, new Response.ErrorListener()
@Override
public void onErrorResponse(VolleyError error)
Log.e("VolleyError", error.toString());
)
;
requestQueue.add(stringRequest);
How can I resolve this problem?
Are any differences between web call and Android call?
edited Nov 10 at 11:37
MrUpsidown
14.6k74893
14.6k74893
asked Nov 9 at 23:22
Paolo Colombo
5219
5219
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The issue looks to be related to the call format:
- Try parsing the URI "manually" (like replacing the spaces with "%20" using the
replacefunction) instead of using theUri.Parsefunction. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequestuse aStringRequestand then converting the string to aJSONObject - Since you are passing the parameters in the URL and you are setting the method parameters to
null, try using aGETmethod instead ofPOST
I change POST in GET request and it work, thanks
– Paolo Colombo
Nov 12 at 11:06
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
The issue looks to be related to the call format:
- Try parsing the URI "manually" (like replacing the spaces with "%20" using the
replacefunction) instead of using theUri.Parsefunction. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequestuse aStringRequestand then converting the string to aJSONObject - Since you are passing the parameters in the URL and you are setting the method parameters to
null, try using aGETmethod instead ofPOST
I change POST in GET request and it work, thanks
– Paolo Colombo
Nov 12 at 11:06
add a comment |
up vote
0
down vote
accepted
The issue looks to be related to the call format:
- Try parsing the URI "manually" (like replacing the spaces with "%20" using the
replacefunction) instead of using theUri.Parsefunction. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequestuse aStringRequestand then converting the string to aJSONObject - Since you are passing the parameters in the URL and you are setting the method parameters to
null, try using aGETmethod instead ofPOST
I change POST in GET request and it work, thanks
– Paolo Colombo
Nov 12 at 11:06
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The issue looks to be related to the call format:
- Try parsing the URI "manually" (like replacing the spaces with "%20" using the
replacefunction) instead of using theUri.Parsefunction. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequestuse aStringRequestand then converting the string to aJSONObject - Since you are passing the parameters in the URL and you are setting the method parameters to
null, try using aGETmethod instead ofPOST
The issue looks to be related to the call format:
- Try parsing the URI "manually" (like replacing the spaces with "%20" using the
replacefunction) instead of using theUri.Parsefunction. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequestuse aStringRequestand then converting the string to aJSONObject - Since you are passing the parameters in the URL and you are setting the method parameters to
null, try using aGETmethod instead ofPOST
answered Nov 10 at 12:15
Vexorei
106112
106112
I change POST in GET request and it work, thanks
– Paolo Colombo
Nov 12 at 11:06
add a comment |
I change POST in GET request and it work, thanks
– Paolo Colombo
Nov 12 at 11:06
I change POST in GET request and it work, thanks
– Paolo Colombo
Nov 12 at 11:06
I change POST in GET request and it work, thanks
– Paolo Colombo
Nov 12 at 11:06
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53234495%2fgoogle-directions-api-zero-results-only-on-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown