資源簡介
獲取微信公眾號平臺token
代碼片段和文件信息
/**************************************************************************************************************************************/
//獲取微信公眾號token?
$appid?=?““;//appid
$secret?=?““;//secret
$surl?=?“https://api.weixin.qq.com/cgi-bin/token“;//提交到的地址
/******************************************************核心代碼*******************************************************************************/
$data?=?“grant_type=client_credential&appid=“.$appid.“&secret=“.$secret;
$url?=?curl_init();//初始化
curl_setopt($url?CURLOPT_URL?$surl);??
curl_setopt($url?CURLOPT_HEADER?0);?
curl_setopt($url?CURLOPT_RETURNTRANSFER?1);??
curl_setopt($url?CURLOPT_POST?1);??
curl_setopt($url?CURLOPT_POSTFIELDS?$data);??
curl_setopt($url?CURLOPT_HTTPHEADER?array(“application/x-www-form-urlenc
- 上一篇:OELOVE婚戀網站
- 下一篇:php簡單的增刪改查
評論
共有 條評論