• 微信企业号网页授权


    <?php
    header("content-type:text/html;charset=utf-8");
    $corpid="xxxxx";//企业的CorpID
    $corpsecret="xxxxxx";//企业的应用Secret
    $url="http://www.xxxx.net/qywx.php";
    $redirect_uri=urlencode($url);//授权后重定向的回调链接地址,请使用urlencode对链接进行处理
    $response_type="code";//返回类型,此时固定为:code
    //应用授权作用域。
    //snsapi_base:静默授权,可获取成员的基础信息;
    //snsapi_userinfo:静默授权,可获取成员的详细信息,但不包含手机、邮箱;
    //snsapi_privateinfo:手动授权,可获取成员的详细信息,包含手机、邮箱。
    $scope="snsapi_privateinfo";
    $agentid="1000002";//微信企业应用的id
    $url="https://open.weixin.qq.com/connect/oauth2/authorize?appid=".$corpid."&redirect_uri=".$redirect_uri."&response_type=code&scope=".$scope."&agentid=".$agentid."&state=STATE#wechat_redirect";
    if (isset($_GET['code'])) {
        $code=$_GET['code'];
        //获取access_token
        $filename=$agentid;
        $access_token="";
    if (file_exists($filename)) {
        $tokenData=file_get_contents($filename);
        $token=json_decode($tokenData,true);
        if (time()>$token['expires_in']) {//已过期
            $access_token="";
        }else{
            $access_token=$token['access_token'];
        }
    }
    if (empty($access_token)) {
        $url='https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid='.$corpid.'&corpsecret='.$corpsecret;
        $tokenData=file_get_contents($url);
        $token=json_decode($tokenData,true);
        $access_token=$token['access_token'];
        $token['expires_in']=time()+$token['expires_in'];
        file_put_contents($filename, json_encode($token));
    }
    //获取用户信息
    $url="https://qyapi.weixin.qq.com/cgi-bin/user/getuserinfo?access_token=".$access_token."&code=".$code;
    $userInfo=file_get_contents($url);
    $user=json_decode($userInfo,true);
    $UserId=$user['UserId'];
    //读取成员具体信息
    $url="https://qyapi.weixin.qq.com/cgi-bin/user/get?access_token=".$access_token."&userid=".$UserId;
    $userStr=file_get_contents($url);
    $userArr=json_decode($userStr,true);
    echo "<pre>";
    var_dump($userArr);
    }else{
        header("Location:".$url);exit();
    }
    ?>    
    

      

  • 相关阅读:
    Max History CodeForces
    Buy a Ticket CodeForces
    AC日记——字符串的展开 openjudge 1.7 35
    AC日记——回文子串 openjudge 1.7 34
    AC日记——判断字符串是否为回文 openjudge 1.7 33
    AC日记——行程长度编码 openjudge 1.7 32
    AC日记——字符串P型编码 openjudge 1.7 31
    AC日记——字符环 openjudge 1.7 30
    AC日记——ISBN号码 openjudge 1.7 29
    AC日记——单词倒排 1.7 28
  • 原文地址:https://www.cnblogs.com/mracale/p/9567263.html
Copyright © 2020-2023  润新知