Now, I'm making an Android app and I have a question about this title.
I use com.android.volley APIs to send query parameters.To send parameters, I made a class extending com.android.volley.Request and intended to oderride the method of this:
protected Map getParams() throws AuthFailureError
But afterwards, I needed to send array type parameters like
x[]=10&x[]=20&x[]=30
But I can't send these array type parameters by above method getParams(). Because a map can have only one value for the key of String "x[]".
Please give me some advices for how to send array type parameters via com.android.volley.Request .
Regards.