企业微信 验证 php,PHP企业微信授权 - osc_0ytokgca的个人空间 - OSCHINA - 中文开源技术交流社区...

1、添加应用菜单。

7788a143eca66b949c3f3c06fc183cc0.png

2、access_token

/**

* 获取token

* @return [type] [description]

*/

public function getToken()

{

$file = "token.txt";

{

$token = file_get_contents($file);

$token = json_decode($token,true);

if(!$token['access_token'] || time()-$token['expires_in'] > 7000)

{

$url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=".$this->corpid."&corpsecret=".strtoupper($this->secrect);

$token = $this->GetHttp($url);

$token = json_decode($token,true);

$token['expires_in'] = time();

file_put_contents("token.txt",json_encode($token));

return $token['access_token'];

}

else

{

$url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=".$this->corpid."&corpsecret=".strtoupper($this->secrect);

$token = $this->GetHttp($url);

$token = json_decode($token,true);

$token['expires_in'] = time();

file_put_contents("token.txt",json_encode($token));

return $token['access_token'];

}

}

}

3、通过code获取user_ticket。

/**

* 获取code,getToken()返回token,获取user_ticket。

*/

function Code(){

$url = "https://qyapi.weixin.qq.com/cgi-bin/user/getuserinfo?access_token=".$this->gettoken()."&code=".$_GET['code'];

$data = $this->GetHttp($url);

$ticket = json_decode($data,true);

$arr = $this->UserTicket($ticket['user_ticket']);

echo "

";

print_r($arr);

}

4、通过user_ticket获取用户信息。

/**

* user_ticket获取成员详情

*/

function UserTicket($user_ticket = ''){

$url = "https://qyapi.weixin.qq.com/cgi-bin/user/getuserdetail?access_token=".$this->getToken();

$data = array(

'user_ticket' => $user_ticket

);

$arr = $this->Curl($url,json_encode($data));

return json_decode($arr,true);

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值