91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信sdk實現禁止微信分享(使用原生php實現)

發布時間:2020-10-13 18:52:19 來源:腳本之家 閱讀:220 作者:huaweichenai 欄目:web開發

在此之前我們已經學習過微信的sdk使用,但是之前實在easyWechat的php插件基礎上實現的,具體可以參考:https://www.jb51.net/article/174309.htm

這里我們來使用原生的php實現微信的sdk-禁止微信分享

一:引入所需要的js

<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script src="http://res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>

二:通過config接口注入權限驗證配置

wx.config({
 debug: true, // 開啟調試模式,調用的所有api的返回值會在客戶端alert出來,若要查看傳入的參數,可以在pc端打開,參數信息會通過log打出,僅在pc端時才會打印。
 appId: '', // 必填,公眾號的唯一標識
 timestamp: , // 必填,生成簽名的時間戳
 nonceStr: '', // 必填,生成簽名的隨機串
 signature: '',// 必填,簽名
 jsApiList: [] // 必填,需要使用的JS接口列表
});

簽名的生成步驟如下:

1:獲取微信公眾號的全局唯一接口調用憑據access_token

調取下面的接口獲取access_token

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET

get參數說明:

appid:微信公眾號的唯一標識appId

secret:微信公眾號的appsecret

根據上面的接口可以獲取到微信公眾號的全局唯一接口調用憑據access_token,接口返回結果如下:

{"access_token":"ACCESS_TOKEN","expires_in":7200}

2:根據access_token獲取jsapi_ticket

調取下面的接口獲取jsapi_ticket

https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=ACCESS_TOKEN&type=jsapi

get參數說明:

access_token:上面接口獲取到的access_token

type:類型,這里指定填jsapi

根據上面的接口可以獲取到jsapi_ticket,接口返回結果如下:

{
 "errcode":0,
 "errmsg":"ok",
 "ticket":"bxLdikRXVbTPdHSM05e5u5sUoXNKd8-41ZO3MhKoyN5OfkWITDGgnr2fwJ0m9E8NYzWKVZvdVtaUgWvsdshFKA",
 "expires_in":7200
}

3:根據獲取到的jsapi_ticket和noncestr,timestamp,url生成簽名

對所有待簽名參數按照字段名的ASCII 碼從小到大排序后,使用URL鍵值對的格式(即key1=value1&key2=value2…)拼接成字符串,然后通過sha1加密生成簽名

三:通過ready接口處理成功驗證后在ready內寫我們所需要的微信sdk接口

wx.ready(function(){
 // config信息驗證后會執行ready方法,所有接口調用都必須在config接口獲得結果之后,config是一個客戶端的異步操作,所以如果需要在頁面加載時就調用相關接口,則須把相關接口放在ready函數中調用來確保正確執行。對于用戶觸發時才調用的接口,則可以直接調用,不需要放在ready函數中。
});

四:具體實現

根據如上說明,這里我們就以禁止微信分享sdk為例實現:

1:php端:

public function actionTicket()
{
  //開啟session
  session_start();
  //appId
  $appId = 'wx73d0c47a64aa5315';
  //secret
  $appSecret = 'aba2793c10623350f6aeee5a728099d3';
  if (!isset($_SESSION['ticket'])){
    //獲取微信公眾號全局唯一接口調用憑據access_token
    $result = $this->getAccessToken($appId, $appSecret);
    $accessToken = $result['access_token'];
    //獲取jsapi_ticket
    $getTicket = $this->getTicket($accessToken);
    $ticket = $getTicket['ticket'];
    $_SESSION['ticket'] = $ticket;
  }
  //jsapi_ticket(公眾號用于調用微信JS接口的臨時票據)
  $ticket = $_SESSION['ticket'];
  //當前時間戳
  $timestamp = time();
  //隨機字符串
  $noncestr = $this->getRandCode();
  //當前url
  $url = $this->getUrl();
  $params = [
    'jsapi_ticket' => $ticket,
    'timestamp' => $timestamp,
    'noncestr' => $noncestr,
    'url' => $url,
  ];
  $options = $this->urlParams($params);
  //獲取簽名
  $signature = sha1($options);
  //將appId,timestamp,noncestr,signature渲染到頁面
  return $this->render('ticket', [
    'appId' => $appId,
    'timestamp' => $timestamp,
    'noncestr' => $noncestr,
    'signature' => $signature,
  ]);
}
/*
 * 獲取jsapi_ticket
 */
public function getTicket($accessToken)
{
  $params = [
    'access_token' => $accessToken,
    'type' => 'jsapi',
  ];
  $urlParams = $this->urlParams($params);
  $ticketUrl = 'https://api.weixin.qq.com/cgi-bin/ticket/getticket?' . $urlParams;
  $result = $this->http_curl($ticketUrl);
  return json_decode($result, true);
}
/*
 * 獲取微信公眾號的全局唯一接口調用憑據access_token
 */
public function getAccessToken($appId, $appSecret)
{
  $params = [
    'grant_type' => 'client_credential',
    'appid' => $appId,
    'secret' => $appSecret,
  ];
  $urlParams = $this->urlParams($params);
  $accessUrl = 'https://api.weixin.qq.com/cgi-bin/token?' . $urlParams;
  $result = $this->http_curl($accessUrl);
  return json_decode($result, true);
}
/*
 * 獲取隨機碼
 */
function getRandCode($num = 16){
  $array = array(
    'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
    'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','v','z',
    '1','2','3','4','5','6','7','8','9','0',
  );
  $tmpstr='';
  $max = count($array);
  for($i=1; $i<=$num; $i++){
    $key = rand(0,$max-1); //'A' -> $array[0]
    $tmpstr .= $array[$key];
  }
  return $tmpstr;
}
/*
 * curl接口調用
 */
public function http_curl($url, $data=null) {
  $curl = curl_init();
  curl_setopt($curl, CURLOPT_URL, $url);
  curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
  curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
  curl_setopt($curl, CURLOPT_POST, 1);
  curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  $result = curl_exec($curl);
  curl_close($curl);
  return $result;
}
/*
 * 字符串拼接
 */
public function urlParams($params)
{
  ksort($params);
  reset($params);
  $options = '';
  foreach ($params as $key => $value) {
    $options .= $key . '=' . $value .'&';
  }
  $options = rtrim($options, '&');
  return $options;
}
/*
 * 獲取當前url
 */
public function getUrl()
{
  //獲取協議類型
  $protocalPort = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://';
  //獲取當前執行腳本的url
  $phpSelf = $_SERVER['PHP_SELF'] ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
  $pathInfo = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '';
  $queryString = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '';
  $relateUrl = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : $phpSelf . (!empty($queryString) ? '?' . $queryString : $pathInfo);
  $url = $protocalPort . (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '') . $relateUrl;
  return $url;
}

2:前端:

<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script src="http://res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
<script>
  $(document).ready(function(){
    wx.config({
      debug: false, // 開啟調試模式為true后可以通過alert彈窗將公眾號簽名等結果反饋出來
      appId: '<?= $appId ?>', // 必填,公眾號的唯一標識
      timestamp: '<?= $timestamp ?>', // 必填,生成簽名的時間戳
      nonceStr: '<?= $noncestr ?>', // 必填,生成簽名的隨機串
      signature: '<?= $signature ?>',// 必填,簽名
      jsApiList: [
        "hideOptionMenu",
      ]
    });
    //配置成功以后config:ok
    wx.ready(function () {
      //隱藏右上角菜單接口
      wx.hideOptionMenu();
    })
  })
</script>

這樣我們就是實現了原生php使用微信sdk

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

潞城市| 福建省| 巢湖市| 历史| 汉川市| 榆林市| 南和县| 象山县| 旌德县| 积石山| 乌拉特中旗| 凤山县| 西充县| 六安市| 沧州市| 沾化县| 宁乡县| 厦门市| 丰都县| 三门县| 柳州市| 嘉定区| 博罗县| 昭苏县| 卢湾区| 大余县| 汶川县| 华蓥市| 扎囊县| 大方县| 丹巴县| 潢川县| 平南县| 建昌县| 盈江县| 清远市| 江源县| 邢台市| 叙永县| 竹溪县| 湟源县|