You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OpenAPI spec allows specifying in: cookie and in: header for parameters.
The problem is - there is no built-in facility in giraffe to bind cookies or headers (or at least I haven't found one), so it seems like we should either restrict those parameters to string type without a format or code-gen manual binding code.
I believe that the solution must be common to both cookie and header, that's why I include them both into this issue.
The text was updated successfully, but these errors were encountered:
OpenAPI spec allows specifying
in: cookie
andin: header
for parameters.The problem is - there is no built-in facility in giraffe to bind cookies or headers (or at least I haven't found one), so it seems like we should either restrict those parameters to
string
type without a format or code-gen manual binding code.I believe that the solution must be common to both cookie and header, that's why I include them both into this issue.
The text was updated successfully, but these errors were encountered: