Display Request Headers for OpenAPI 3.0
Are there any plans on implementing to display request headers in the current UI? I see that the last response to issue #1501 was a few years ago and I haven't seen any that specify the new UI lately.
What do you mean by this? Do you mean displaying what request headers should be sent with a request to a certain endpoint? If so then you can define them as parameters and then they will display for the route as parameters.
Given this path definition:
/blah:
get:
description: Some description.
parameters:
- in: header
name: X-Api-Key
schema:
type: string
format: uuid
required: true
description: API key
responses:
...
Will render this UI:

Ah no, I mean in the response section, the request headers do not display anymore. Here is an old version with the request headers displaying

Is there a way to configure this to display on the current UI?
感谢,成功解决问题