You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

limitations.md 845 B

6 vuotta sitten
1234567891011121314151617181920212223242526272829303132333435363738
  1. # Limitations
  2. ### Forbidden header names
  3. Some header names cannot be controlled by web applications, due to security
  4. features built into web browsers.
  5. Forbidden headers include:
  6. > - Accept-Charset
  7. > - Accept-Encoding
  8. > - Access-Control-Request-Headers
  9. > - Access-Control-Request-Method
  10. > - Connection
  11. > - Content-Length
  12. > - Cookie
  13. > - Cookie2
  14. > - Date
  15. > - DNT
  16. > - Expect
  17. > - Host
  18. > - Keep-Alive
  19. > - Origin
  20. > - Proxy-*
  21. > - Sec-*
  22. > - Referer
  23. > - TE
  24. > - Trailer
  25. > - Transfer-Encoding
  26. > - Upgrade
  27. > - Via
  28. >
  29. > _[Forbidden header names (developer.mozilla.org)](https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_header_name)_
  30. The biggest impact of this is that OpenAPI 3.0 Cookie parameters cannot be
  31. controlled when running Swagger-UI in a browser.
  32. For more context, see [#3956](https://github.com/swagger-api/swagger-ui/issues/3956).