Sebazzz/SDammann.WebApi.Versioning

VersionedApiExplorer doesn't support query string parameters for methods other than GET

Opened this issue · 1 comments

Currently POST methods are formatted this way:
POST api/v2/Hello/message={message}&otherthing={otherthing}

They should look like this:
POST api/v2/Hello?message={message}&otherthing={otherthing}

This also causes a yellow screen of death when clicking on the original url.

As per vnext branch the VersionedApiExplorer needs reimplementing.