Some external services deny a request if a HTTP_ACCEPT header is present. However, llHTTPRequest enforces that header, using "text/plain;charset=utf-8" if no other header (out of a small list of available options) is present. As Monty Linden confirmed in https://community.secondlife.com/forums/topic/521090-grid-ssl-cert-updates-coming-soon/#findComment-2881062, empty HTTP_ACCESS headers are not allowed.
I would like to suggest that making a llHTTPRequest call with an explicitly empty HTTP_ACCEPT header will remove that header altogether in http-out calls.
Examples:
llHTTPRequest(url, [],"" );
No HTTP_ACCEPT set, default "text/plain;charset=utf-8" gets used.
llHTTPRequest(url, [HTTP_ACCEPT, "application/json”],"" );
Specific HTTP_ACCEPT set, so only "application/json” gets accepted.
llHTTPRequest(url, [HTTP_ACCEPT, ""],"" );
Empty string gets passed - HTTP_ACCEPT header gets removed completely.
The chances for breaking existing content are slim, since a scripter would have had to explicitly pass an empty string (in violation of the documentation), and then rely on it being substituted with text/plain.
Since work on the http-out part is underway anyway, this would be an ideal opportunity to add this feature.