Malformed Url Exception While Using Volley
Getting the Error below while using Android-Volley in android. The same problem remains unsolved here too... 08-27 14:46:18.779 26990-26990/com.rev.volleydemo D/VOLLEY﹕ http://a
Solution 1:
The error lies here:
JsonObjectRequest jsonObjectRequest = newJsonObjectRequest(Method.POST, null, URL, newResponse.Listener<JSONObject>() {
The second parameter of the constructor should be the URL, not the third one.
See here: JsonObjectRequest
Post a Comment for "Malformed Url Exception While Using Volley"