1. 程式人生 > >php獲取微信ticket和token並返回簽名

php獲取微信ticket和token並返回簽名

所有 未能 substr pro content abcd sha1 簽名 wiki

jssdk.php頁

<?php
/*
 * 微信公眾號後臺裏獲取appId和appSecret,並在公眾號後臺=>安全中心=>IP白名單中設置當前頁面服務器的IP,如果是負載均衡則需將每臺子服務器IP都設置上,否則不能獲取token
 */
class Jssdk {
    // 公眾號的appId
    private $appId = ‘wx97527950badbe995‘;
    // 公眾號的appSecret
    private $appSecret = ‘3482d6676db63ccacb67843f6ea8d9f9‘;
    
    
// 獲取簽名等信息,本方法內容可做微信分享接口用 public function getInfo() { // 獲取最新可用ticket $jsapiTicket = $this->getJsApiTicket (); // 註意 URL 一定要動態獲取,不能 hardcode. $protocol = (! empty ( $_SERVER [‘HTTPS‘] ) && $_SERVER [‘HTTPS‘] !== ‘off‘ || $_SERVER [‘SERVER_PORT‘] == 443) ? "https://" : "http://";
// 獲取當前頁面的url // $url = "$protocol$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; // 如果方法作為接口,則無法將當前頁面訪問路徑作為分享url,需要訪問接口的前端頁面通過 window.location.href 獲取頁面url傳過來 $url = $_POST [‘url‘] ? $_POST [‘url‘] : "$protocol$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; $timestamp = time
(); $nonceStr = $this->createNonceStr (); // 這裏參數的順序要按照 key 值 ASCII 碼升序排序 $string = "jsapi_ticket=$jsapiTicket&noncestr=$nonceStr&timestamp=$timestamp&url=$url"; $signature = sha1 ( $string ); $signPackage = array ( "appId" => $this->appId, "nonceStr" => $nonceStr, "timestamp" => $timestamp, "url" => $url, "signature" => $signature, "rawString" => $string ); //如果是接口,這裏則是 echo json_encode($signPackage); return $signPackage; } // 創建獲取隨機字符串 private function createNonceStr($length = 16) { $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; $str = ""; for($i = 0; $i < $length; $i ++) { $str .= substr ( $chars, mt_rand ( 0, strlen ( $chars ) - 1 ), 1 ); } return $str; } // 獲取ticket private function getJsApiTicket() { // jsapi_ticket 應該全局存儲與更新,以下代碼以寫入到文件中做示例,實際應存在數據庫中 $data = json_decode ( $this->get_php_file ( "jsapi_ticket.php" ) ); //獲取沒過期的ticket,過期則重新獲取 if ($data->expire_time < time ()) { // 獲取最新可用token,ticket需要通過token獲取 $accessToken = $this->getAccessToken (); // 如果是企業號用以下 URL 獲取 ticket // $url = "https://qyapi.weixin.qq.com/cgi-bin/get_jsapi_ticket?access_token=$accessToken"; $url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?type=jsapi&access_token=$accessToken"; $res = json_decode ( $this->httpGet ( $url ) ); $ticket = $res->ticket; if ($ticket) { //將有效時間設置成將來的7000秒內 $data->expire_time = time () + 7000; $data->jsapi_ticket = $ticket; $this->set_php_file ( "jsapi_ticket.php", json_encode ( $data ) ); } } else { $ticket = $data->jsapi_ticket; } return $ticket; } // 獲取token private function getAccessToken() { // access_token 應該全局存儲與更新,以下代碼以寫入到文件中做示例,實際應存在數據庫中 $data = json_decode ( $this->get_php_file ( "access_token.php" ) ); //獲取沒過期的token,過期則重新獲取 if ($data->expire_time < time ()) { // 如果是企業號用以下URL獲取access_token // $url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=$this->appId&corpsecret=$this->appSecret"; $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$this->appId&secret=$this->appSecret"; $res = json_decode ( $this->httpGet ( $url ) ); $access_token = $res->access_token; if ($access_token) { //將有效時間設置成將來的7000秒內 $data->expire_time = time () + 7000; $data->access_token = $access_token; $this->set_php_file ( "access_token.php", json_encode ( $data ) ); } } else { $access_token = $data->access_token; } return $access_token; } // curl訪問返回數據 private function httpGet($url) { $curl = curl_init (); curl_setopt ( $curl, CURLOPT_RETURNTRANSFER, true ); curl_setopt ( $curl, CURLOPT_TIMEOUT, 500 ); // 為保證第三方服務器與微信服務器之間數據傳輸的安全性,所有微信接口采用https方式調用,必須使用下面2行代碼打開ssl安全校驗。 // 如果在部署過程中代碼在此處驗證失敗,請到 http://curl.haxx.se/ca/cacert.pem 下載新的證書判別文件。 curl_setopt ( $curl, CURLOPT_SSL_VERIFYPEER, true ); curl_setopt ( $curl, CURLOPT_SSL_VERIFYHOST, true ); curl_setopt ( $curl, CURLOPT_URL, $url ); $res = curl_exec ( $curl ); curl_close ( $curl ); return $res; } // 讀取文件 private function get_php_file($filename) { return trim ( substr ( file_get_contents ( $filename ), 15 ) ); } // 寫入文件 private function set_php_file($filename, $content) { $fp = fopen ( $filename, "w" ); fwrite ( $fp, "<?php exit();?>" . $content ); fclose ( $fp ); } }

access_token.php頁

<?php exit();?>
{"access_token":"","expire_time":0}

jsapi_ticket.php頁

<?php exit();?>
{"jsapi_ticket":"","expire_time":0}

index.php頁

<?php
/*
 * 前端頁面,這裏是直接包含了獲取簽名的頁面,實際可將獲取簽名頁面寫成接口,前端通過ajax獲取
*/
require_once "jssdk.php";
$jssdk = new Jssdk();
$info = $jssdk->getInfo();
?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title></title>
</head>
<body>
  
</body>
<script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
<script>
  /*
   * 註意:
   * 1. 所有的JS接口只能在公眾號綁定的域名下調用,公眾號開發者需要先登錄微信公眾平臺進入“公眾號設置”的“功能設置”裏填寫“JS接口安全域名”。
   * 2. 如果發現在 Android 不能分享自定義內容,請到官網下載最新的包覆蓋安裝,Android 自定義分享接口需升級至 6.0.2.58 版本及以上。
   * 3. 常見問題及完整 JS-SDK 文檔地址:http://mp.weixin.qq.com/wiki/7/aaa137b55fb2e0456bf8dd9148dd613f.html
   *
   * 開發中遇到問題詳見文檔“附錄5-常見錯誤及解決辦法”解決,如仍未能解決可通過以下渠道反饋:
   * 郵箱地址:[email protected]
   * 郵件主題:【微信JS-SDK反饋】具體問題
   * 郵件內容說明:用簡明的語言描述問題所在,並交代清楚遇到該問題的場景,可附上截屏圖片,微信團隊會盡快處理你的反饋。
   */
  wx.config({
    debug: true,
    appId: ‘<?php echo $info["appId"];?>‘,
    timestamp: <?php echo $info["timestamp"];?>,
    nonceStr: ‘<?php echo $info["nonceStr"];?>‘,
    signature: ‘<?php echo $info["signature"];?>‘,
    jsApiList: [
      // 所有要調用的 API 都要加到這個列表中
    ]
  });
  wx.ready(function () {
    // 在這裏調用 API
  });
</script>
</html>

php獲取微信ticket和token並返回簽名