公众号模板消息提交无法发出?使用PHP的fsockopen方式
$fp = fsockopen('api.weixin.qq.com', 80, $error, $errstr, 1);
$http = "POST /cgi-bin/message/template/send?access_token={$access_token} HTTP/1.1\r\nHost: api.weixin.qq.com\r\nContent-type: application/x-www-form-urlencoded\r\nContent-Length: " . strlen($formwork) . "\r\nConnection:close\r\n\r\n$formwork\r\n\r\n";
fwrite($fp, $http);
fclose($fp);
从昨天开始无法收到模板消息,之前用这个方式都是可以的,昨天突然就不行了 是接口调整了吗?