I'm attempting to use Refit against the Amazon MWS API, but have one hurdle:
The Amazon MWS API accepts Query Parameters on a POST request for some calls. Here is some AWS Documentation.
From what I can see, Refit will bind this:
[Get("/")]
Task<MyResult> GetFeedSubmissions(MyRequest parameters);
but not this:
[Post("/")]
Task<MyResult> GetFeedSubmissions(MyRequest parameters);
AWS is a bit screwy in terms of how this works, but is it possible to add dynamic query support for POST requests?
I'm attempting to use Refit against the Amazon MWS API, but have one hurdle:
The Amazon MWS API accepts Query Parameters on a POST request for some calls. Here is some AWS Documentation.
From what I can see, Refit will bind this:
but not this:
AWS is a bit screwy in terms of how this works, but is it possible to add dynamic query support for POST requests?