ORA-43859: CONTENTTYPE string too long
Cause: Length of CONTENTTYPE string exceeded the defined maximum.
Action: Modify length of CONTENTTYPE string and retry operation.
ORA-43859: CONTENTTYPE string too long错误是由于Content-Type Header字符串太长而引起的,比如类似于Content-Type: application/json; charset=utf-8; boundary=”long boundary string”的请求。
常见案例是在HTTP请求中有一个特别长的Content-Type字段时。
1.检查HTTP请求或消息体中Content-Type Header元素的有效性;
2.移除无用的参数;
3.只保留有效,必需的参数;
4.检查Header元素中所有参数都被正确指定,重复的参数被移除;
5.在网站端进行调试;
6.重新尝试发起该HTTP请求。