1、以下写法报错
$signature = $_GET["signature"]; $timestamp = $_GET["timestamp"]; $nonce = $_GET["nonce"];
微信公众号配合问题。
2、报SSL certificate problem: unable to get local issuer certificate Bug解决方案
(1) 快捷解决方法是使用curl_exec()之前跳过ssl检查项
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
(2)下载ca-bundle.crt ,放到对应的目录,在php.ini文件中配置下路径
https://github.com/bagder/ca-bundle/blob/e9175fec5d0c4d42de24ed6d84a06d504d5e5a09/ca-bundle.crt
在php.ini加入 ,重启web服务器
curl.cainfo="真实路径/ca-bundle.crt"
3、报以下bug
api unauthorized hint: [YR_UNA0229vr58!]" }
说明微信公众号未认证,暂不支持未认证的微信账号 使用代码创建自定义菜单