首页 > 代码库 > PHP获取微信 accesstoken

PHP获取微信 accesstoken

PHP根据appid和secret获取微信access_token,php通过curl远程获取微信access_token信息
微信公众号开启开发者模式,使用appid和secret请求微信获取accesstoken的接口路径,就可以了,

$appid = ‘wx422126b0b6bbfcfc‘;
$secret = ‘***‘;


$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $secret . "";
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
print_r(json_decode($result, true));

主要就只要整合到自己的项目中就可以了,accesstoken是只要使用微信公众号的话就需要的,写成方法整合一下就可以了

功能完成代码参考:http://www.erdangjiade.com/php/1007.html

PHP获取微信 accesstoken