加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
oauth2.php 555 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
if (isset($_GET['code'])){
//echo $_GET['code'];
//header("Location:"."https://api.weixin.qq.com/sns/oauth2/access_token?appid=wxdb57e2621068fc01&secret=d4624c36b6795d1d99dcf0547af5443d&code=$_GET[code]&grant_type=authorization_code");
$url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=wxdb57e2621068fc01&secret=d4624c36b6795d1d99dcf0547af5443d&code=$_GET[code]&grant_type=authorization_code";
$contents = file_get_contents($url);
echo $contents;
print_r(json_decode($contents));
}else{
echo "NO CODE";
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化