cowboy_swagger icon indicating copy to clipboard operation
cowboy_swagger copied to clipboard

If I Use the Name "Authorization" when I add Header, it doesn't send the Header

Open morguee opened this issue 1 year ago • 2 comments

If I Use the Name "authorization" when I add Header in Parameters, it doesn't send the Header, but if I use any other word besides "authorization", it sends the header. Here's an example of what I did.

parameters => [ #{name => <<"authorization">>, description => <<"Auth Header">>, in => <<"header">>, required => true, schema => #{type => string}}],

Also I know there's a way to add a security feature where you can add an auth_key in the swagger ui, but when I follow the specs I can't seem to get it to work. What are the best practices for adding an auth key using this Erlang wrapper? If anyone has an example of doing so, it would help me a lot, thanks.

morguee avatar Aug 23 '23 03:08 morguee