部分代码如下:
$data=array(
"touser"=>$fromUsername,
"msgtype"=>"image",
//"msgtype"=>"text",
//"text"=>array("content"=>$content),
"image"=>array("media_id"=>$media_id)
);
$json = json_encode($data,JSON_UNESCAPED_UNICODE); //php5.4+
saveCustomerServiceMsg("0",$fromUsername);
requestAPI($json);
$textdata=array(
"touser"=>$fromUsername,
"msgtype"=>"text",
"text"=>array("content"=>$content),
);
$textjson = json_encode($textdata,JSON_UNESCAPED_UNICODE);
requestAPI($textjson);
我发起两次requestAPI($textjson); 单独发都是能发出去的,但是一起发的时候只有第一个的图片回复给了用户,哪位大佬能解答一下,万分感谢!