PHP獲取微信accesstoken

原始碼下載發表於2016-12-19

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


相關文章