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("|").concat(tappe.get(i));
}
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?
android google-maps android-volley
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("|").concat(tappe.get(i));
}
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?
android google-maps android-volley
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("|").concat(tappe.get(i));
}
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?
android google-maps android-volley
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("|").concat(tappe.get(i));
}
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?
android google-maps android-volley
android google-maps android-volley
edited Nov 10 at 11:37
MrUpsidown
14.6k74893
14.6k74893
asked Nov 9 at 23:22
Paolo Colombo
52110
52110
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
replace
function) instead of using theUri.Parse
function. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequest
use aStringRequest
and 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 aGET
method 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
replace
function) instead of using theUri.Parse
function. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequest
use aStringRequest
and 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 aGET
method 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
replace
function) instead of using theUri.Parse
function. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequest
use aStringRequest
and 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 aGET
method 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
replace
function) instead of using theUri.Parse
function. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequest
use aStringRequest
and 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 aGET
method 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
replace
function) instead of using theUri.Parse
function. - Try getting the response as a string instead of JSON: instead of using a
JsonObjectRequest
use aStringRequest
and 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 aGET
method 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 |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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