mcxiaoke / android-volley

DEPRECATED
4.29k stars 1.56k forks source link

Volley can send request with params like "like=music&like=art" this? #98

Open yunair opened 9 years ago

yunair commented 9 years ago

I want to send params with Volley, but Volley using Map to store params, I do not know which Map can save same key, can any one help me ?

mradzinski commented 9 years ago

Why would a REST endpoint (assuming you are using one) accept repeated parameters? I mean, my guess is that the REST should be better implemented to support something like:

http://your-rest.com/whatever?like=music,art,culture,blah,blah,blah

Do you mind providing some more insight on what you are trying to accomplish by duplicating request parameters?

yunair commented 9 years ago

Because REST endpoint accept them as array, Send request like below. http://stackoverflow.com/questions/3061273/send-an-array-with-an-http-get