今天我有一个 Node.js 服务器,它为客户提供 API 服务。一个例子是接收一个 CRM webhook。
router.route('/webhook/service/notifications/crm/syonet/convert')
.post(convertSyonet)
module.exports = router
CRM 在请求中发送以下标头的位置:
内容类型:application/json;charset=ISO-8859-1
并且我的服务器返回以下错误:
<h1>unsupported charset "ISO-8859-1"</h1>
<h2>415</h2>
<pre>UnsupportedMediaTypeError: unsupported charset "ISO-8859-1"
at jsonParser
如何接受此 crm 的请求?