微信开发者-接口的相关配置

1.获取access_token

$access_token2 = \'https://api.weixin.qq.com/cgi-bin/token?appid=\' . $appid . \'&secret=\' . $secret.\'&lang=zh_CN&grant_type=client_credential\'; $res = file_get_contents($access_token2); //获取文件内容或获取网络请求的内容 $result2 = json_decode($res,true); //接受一个 JSON 格式的字符串并且把它转换为 PHP 变量 $access_token = $result2[\'access_token\'];

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgxfdg.html