0

今天我有一个 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 &quot;ISO-8859-1&quot;</h1>
<h2>415</h2>
<pre>UnsupportedMediaTypeError: unsupported charset &quot;ISO-8859-1&quot;
    at jsonParser

如何接受此 crm 的请求?

4

0 回答 0