fluent-plugin-extract_query_params
fluent-plugin-extract_query_params copied to clipboard
Support for multiple values of same parameter
This plugins works great, except that as i can saw - it doesn't support parameters with same name and different values in one request.
For example, if i have request with such GET parameters param[]=1¶m[]=2 i would expect array of that values in parsing result: param[]: 1,2.
In current state plugin return only last value in such case.