Reputation: 187
Is it possible to provide the HTTP custom header name in request or response header in other than the English language? In our case, we are integrating our service with external servers and, we want to take the Header name "which external server will be responding as Auth Header" as input from the user. If there is an option to provide header-name in Chinese or other languages.
Upvotes: 0
Views: 260
Reputation: 42017
No, field names are restricted to a subset of US-ASCII. See https://greenbytes.de/tech/webdav/rfc7230.html#header.fields for details.
Upvotes: 2