Klemen Tusar

Results 234 comments of Klemen Tusar

> I am missing this too. What is even worse is that I can not write my own converter to handle query params as I need. @radzish you can always...

@dustin-graham yep, that's how I always work with it. I'll take another look at this over the Xmas holidays unless someone beats me to it 🤞

Not sure if this resolves this particular custom serialization issue, but last week I replaced the old query serialization with my own port of [qs](https://github.com/techouse/qs) in https://github.com/lejard-h/chopper/pull/592. [qs has the...

@muhammadsaddamnur FYI [cupertino_http](https://pub.dev/packages/cupertino_http) and [cronet_http](https://pub.dev/packages/cronet_http) both support http/3, so you can use that instead of `IOClient` CC / @JEuler

@danielgomezrico I assume you are referring to a `built_value` serializer?

@mammba01012018 I assume you're using `built_value`. Is this still an issue and if so, can you provide some test example code?

@JEuler @guymclean has this issue been fully addressed/fixed?

@point-source This should have been fixed in this PR already https://github.com/lejard-h/chopper/pull/364 ```json { "Field": "QuoteNumber", "Op": "=", "Value": "306142" } ``` would get encoded as ``` hxxp://path.to/api/?filter.Field=QuoteNumber&filter.Op=%3D&filter.Value=306142 ``` Check the...

> One way I can think of is providing a way to insert a "logging" interceptor before the converters. This should be logged in Crashlyitics anyway. > I also don't...