新浪sae服务器php搭建微信echostr问题
搭建SAE PHP服务器时其它配置完全正确,但是微信验证服务器有效性时总是出现配置失败的问题。
在echo echostr之前需要清除文本格式代码如下:
if ($tmpStr == $signature) {
if( !headers_sent() )
header('Content-Type: text/plain');
echo $_GET ["echostr"];
}
新浪sae服务器php搭建微信echostr问题
搭建SAE PHP服务器时其它配置完全正确,但是微信验证服务器有效性时总是出现配置失败的问题。
在echo echostr之前需要清除文本格式代码如下:
if ($tmpStr == $signature) {
if( !headers_sent() )
header('Content-Type: text/plain');
echo $_GET ["echostr"];
}