在调用客服消息接口发送带小程序连接的客服消息时候乱码?
我在用客服接口发送带小程序连接的的时候,如果加上小程序跳转连接,urlencode,就无法发送客服消息,报的openid不合法?如果不加urlencode可以正常发送,但是在客户端显示乱码!
$content = '<a data-miniprogram-appid="'.$appid.'" data-miniprogram-path="pages/sale/coupon/my/index/index" href="">点击查看</a>'
$message = array(
'msgtype' => 'text',
'text' => array('content' => urlencode($content)),
'touser' => $openid,
);