PHP获取微信 accesstoken
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章