微信小程序,weixin,新鸟求助,出现了40029问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序,weixin,新鸟求助,出现了40029问题相关的知识,希望对你有一定的参考价值。

<?php
$zsappid='wx80dd3667ed6e2863';
$zssecret='18088e581ffe1d3ce8e84f368a22b6c7';

if(isset($_GET['code']))

hq_AccessToken($_GET['code']);


function hq_AccessToken($codea)
$url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$zsappid."&secret=".$zssecret."&code=".$codea."&grant_type=authorization_code";
$res=httpRequset($url);
print_r($res);


function httpRequset($url,$data=false)
$ch=curl_init();
//设置超时
curl_setopt($ch,CURLOPT_TIMEOUT,60);
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
if($data)
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$data);

curl_setopt($ch,CURLOPT_HEADER,FALSE);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
$res=curl_exec($ch);
curl_close($ch);
return $res;

?>
参考技术A code只能使用一次的,你这个应该是code使用了两次哦。附上我的代码
$url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . C('wx_appid') . "&secret=" . C('wx_appsecret') . "&js_code=" . $code . "&grant_type=authorization_code";

以上是关于微信小程序,weixin,新鸟求助,出现了40029问题的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序,weixin,求助,一个循环列表,点击自身时增加一个样式

微信小程序,weixin,this.setData is not a function 报错求帮助

微信小程序关于swiper问题求助

微信小程序,weixin,微信支付成功后的回调函数 通知怎么处理

微信小程序,weixin,微信小程序怎么设置textarea文本域输入

微信小程序商城开源项目,Weixin-App-Shop 1.0 版本正式发布!!!