目前我们小程序采用开发者服务器接收消息推送,消息推送延迟长4~5s,想知道原因?
curl请求:
curl --location --request POST 'https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=xxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"touser": "OPENID",
"msgtype": "text",
"text": {
"content": "Hello World"
}
}'

推送都会有延迟,这不正常吗