I... stuck o.O
I\'ve params in foreign request:
param[62537]=abc; param[20356]=cde; param[92837]=fgh;
And I\'m looking for
Not the prettiest way, but did you try to get the keys of the Map returned by asFormUrlEncoded:
Set keys = request().body().asFormUrlEncoded().keySet(); for (String key : keys) { // check if key begin with "param[" }