Home WeChat Applet WeChat Development Share the WeChat public account to realize the function of receiving membership cards

Share the WeChat public account to realize the function of receiving membership cards

Jun 16, 2017 am 10:00 AM

This article mainly introduces the relevant information on the WeChat public account to realize the membership card collection function. Friends who need it can refer to

1. The collection of membership cards also requires the js-sdk interface (you can refer to Obtaining WeChat The public account obtains the user’s geographical location information) (reference URL: http://gaoboy.com/article/25.html)

2. One more thing than obtaining the user’s geographical location information is that you need to obtain the signature package separately. , the signature method is also different from obtaining the user's geographical location (here we will talk about the method of obtaining the signature package)

Obtain the js-sdk signature package:

1. The current URL, timestamp, random string, JSAPITICKET for combination

#
 //调用js-sdk的签名包
 public function getSignPackage() {
 $jsapiTicket = $this->getJsApiTicket();
 // 注意 URL 一定要动态获取,不能 hardcode.(获取当前网页的url)
 $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
 $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
 );
 return $signPackage; 
 }
Copy after login

## 获##
//使用会员卡领取的签名包
 public function getHuiYuanSignPackage() {
 $apiTicket = $this->getApiTicket();
 // 注意 URL 一定要动态获取,不能 hardcode.(获取当前网页的url)
 $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
 $url = "$protocol$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
 //时间戳
 $timestamp = time();
 //随机字符串获取
 // $nonceStr = $this->createNonceStr();
 // 这里参数的顺序要按照 key 值 ASCII 码升序排序
 $string = $timestamp.$apiTicket."pVYA_t3RCVF_yhNcO6QCeAmb-1UI";
 //生成字符串是用来签名用的
 $signature = sha1($string);
 $signPackage = array(
  "timestamp" => $timestamp,
  "signature" => $signature,
 );
 return $signPackage; 
 }
Copy after login

Detailed code description:

HTML page:

  //引入微信js文件
   <script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
<script type="text/JavaScript">
//配置信息验证接口(填写的js-sdk获取的签名包的参数)
wx.config({
 debug: false,
 appId: &#39;<?PHP echo $signPackage["appId"];?>&#39;,
 timestamp: &#39;<?php echo $signPackage["timestamp"];?>&#39;,
 nonceStr: &#39;<?php echo $signPackage["nonceStr"];?>&#39;,
 signature: &#39;<?php echo $signPackage["signature"];?>&#39;,
 jsApiList: [
  // 所有要调用的 API 都要加到这个列表中
  &#39;addCard&#39;
  ]
   });
wx.ready(function(){
        //添加卡券
    document.querySelector(&#39;#addCard&#39;).onclick = function () {
     wx.addCard({
      cardList: [
      {
       cardId: "",//微信公众号内创建的会员卡的id
       cardExt: &#39;{"timestamp":"<?php echo $huiyuanPackage[&#39;timestamp&#39;] ?>","signature":"<?php echo $huiyuanPackage[&#39;signature&#39;] ?>"}&#39;//会员卡的签名包
      }
      ],
     //成功之后的回调的函数(通过回调函数该表数据库是否领取会员卡的状态)
      success: function (res) {
      $.ajax({
      url: &#39;__CONTROLLER__/editHuiYuan&#39;,
      type: &#39;post&#39;,
      dataType: &#39;json&#39;,
      data: {is_LingQu: &#39;1&#39;,user_id:"<?php echo $user[&#39;user_id&#39;] ?>"},
      success:function(){
      $("#addCard").html("我的会员卡");
      }
      })
      }
     });
    };
   });
</script>
Copy after login

Code in the controller:

Class library: http://www.jb51.net/article/115732.htm

 public function index(){
 $user_id = session(&#39;user_id&#39;);
  if($user_id){
  $jssdk = new \Home\Model\WechatModel();
  $signPackage = $jssdk->GetSignPackage();//获取js-sdk签名包
  $huiyuanPackage = $jssdk->getHuiYuanSignPackage();获取会员卡签名包
  //获取用户信息 
  $user = M(&#39;user&#39;)->where(array(&#39;user_id&#39; => $user_id))->find();
  //产品收藏数量统计
  $goods_count = M(&#39;goods_shoucang&#39;)->where(array(&#39;user_id&#39; => $user_id))->count();
  //门店收藏数量统计
  $shop_count = M(&#39;shop_shoucang&#39;)->where(array(&#39;user_id&#39; => $user_id))->count();
  }else{
  //判断该用户是否存在
  $model = new \Home\Model\WechatModel();
  $openid_accesstoken = $model->openId();
  $rst = M(&#39;user&#39;)->where(array(&#39;user_openid&#39; => $openid_accesstoken[&#39;openid&#39;]))->find();
  if($rst){
   session(&#39;openid&#39;,$openid_accesstoken[&#39;openid&#39;]);
   session(&#39;user_id&#39;, $rst[&#39;user_id&#39;]);
   $jssdk = new \Home\Model\WechatModel();
   $signPackage = $jssdk->GetSignPackage();
   $huiyuanPackage = $jssdk->getHuiYuanSignPackage();
   //获取用户信息 
   $user = M(&#39;user&#39;)->where(array(&#39;user_id&#39; => $rst[&#39;user_id&#39;]))->find();
   //产品收藏数量统计
   $goods_count = M(&#39;goods_shoucang&#39;)->where(array(&#39;user_id&#39; => $rst[&#39;user_id&#39;]))->count();
   //门店收藏数量统计
   $shop_count = M(&#39;shop_shoucang&#39;)->where(array(&#39;user_id&#39; => $rst[&#39;user_id&#39;]))->count();
  }else{
   $userInfo = $model->getOpenId($openid_accesstoken[&#39;openid&#39;],$openid_accesstoken[&#39;access_token&#39;]);
     $data = array(
      &#39;user_img&#39; => $userInfo[&#39;headimgurl&#39;],
      &#39;user_openid&#39; => $userInfo[&#39;openid&#39;],
      &#39;user_name&#39; => filter($userInfo[&#39;nickname&#39;]),
      &#39;user_register_time&#39; => time(),
      &#39;city&#39; => $userInfo[&#39;province&#39;].&#39;-&#39;.$userInfo[&#39;city&#39;],
     );
   $id = M(&#39;user&#39;)->add($data);
   session(&#39;openid&#39;, $userInfo[&#39;openid&#39;]);
   session(&#39;user_id&#39;,$id);
   $jssdk = new \Home\Model\WechatModel();
   $signPackage = $jssdk->GetSignPackage();
   $huiyuanPackage = $jssdk->getHuiYuanSignPackage();
   //获取用户信息 
   $user = M(&#39;user&#39;)->where(array(&#39;user_id&#39; => $id))->find();
   //产品收藏数量统计
   $goods_count = M(&#39;goods_shoucang&#39;)->where(array(&#39;user_id&#39; => $id))->count();
   //门店收藏数量统计
   $shop_count = M(&#39;shop_shoucang&#39;)->where(array(&#39;user_id&#39; => $id))->count();
   }
  }
  $this->assign(&#39;signPackage&#39;, $signPackage);
  $this->assign(&#39;huiyuanPackage&#39;, $huiyuanPackage);
  $this->assign(&#39;user&#39;, $user);
  $this->assign(&#39;shop_count&#39;, $shop_count);
  $this->assign(&#39;goods_count&#39;, $goods_count);
  $this->display();
 }
Copy after login

The above is the detailed content of Share the WeChat public account to realize the function of receiving membership cards. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Can I see visitors in WeChat Moments? Can I see visitors in WeChat Moments? May 06, 2024 pm 01:30 PM

1. WeChat is a social platform that pays attention to privacy protection. Users cannot see who has visited their Moments or personal homepage. 2. This design is intended to protect user privacy and avoid potential harassment or snooping. 3. Users can only see the likes and comments records in their circle of friends, further ensuring the confidentiality of personal information.

There are rumors that 'iPhone 16 may not support WeChat', and Apple's technical consultant in China said that it is communicating with Tencent about app store commissions There are rumors that 'iPhone 16 may not support WeChat', and Apple's technical consultant in China said that it is communicating with Tencent about app store commissions Sep 02, 2024 pm 10:45 PM

Thanks to netizens Qing Qiechensi, HH_KK, Satomi Ishihara and Wu Yanzu of South China for submitting clues! According to news on September 2, there are recent rumors that "iPhone 16 may not support WeChat." In response to this, a reporter from Shell Finance called Apple's official hotline. Apple's technical consultant in China responded that whether iOS systems or Apple devices can continue to use WeChat, and WeChat The issue of whether it can continue to be listed and downloaded on the Apple App Store requires communication and discussion between Apple and Tencent to determine the future situation. Software App Store and WeChat Problem Description Software App Store technical consultant pointed out that developers may need to pay fees to put software on the Apple Store. After reaching a certain number of downloads, Apple will need to pay corresponding fees for subsequent downloads. Apple is actively communicating with Tencent,

How to recover deleted chat history on WeChat How to recover deleted chat history on WeChat May 06, 2024 pm 01:29 PM

1. To recover deleted WeChat chat history, you need to use two mobile phones for data migration. 2. On the old phone, click [Me] → [Settings] → [Chat] → [Chat History Migration and Backup]. 3. Select [Migrate] and set the target device platform. After selecting the chat history to be restored, click [Start]. 4. Then log in to the same account on the new phone and scan the QR code on the old phone to start the migration. 5. After the migration is completed, the deleted chat history will be restored to the new phone.

deepseek image generation tutorial deepseek image generation tutorial Feb 19, 2025 pm 04:15 PM

DeepSeek: A powerful AI image generation tool! DeepSeek itself is not an image generation tool, but its powerful core technology provides underlying support for many AI painting tools. Want to know how to use DeepSeek to generate images indirectly? Please continue reading! Generate images with DeepSeek-based AI tools: The following steps will guide you to use these tools: Launch the AI ​​Painting Tool: Search and open a DeepSeek-based AI Painting Tool (for example, search "Simple AI"). Select the drawing mode: select "AI Drawing" or similar function, and select the image type according to your needs, such as "Anime Avatar", "Landscape"

Is WeChat Lingqiantong safe? Is WeChat Lingqiantong safe? Apr 29, 2024 am 10:23 AM

1. WeChat Lingqiantong adopts a multi-layer security mechanism, including password protection, real-name authentication, mobile phone binding, etc., to ensure the security of user accounts. 2. WeChat Pay uses a variety of encryption methods, including SSL encrypted transmission, real-time monitoring, etc., to ensure transaction security. 3. WeChat Pay also cooperates with banks and financial institutions to implement risk control and prevention measures to monitor and handle abnormal transactions. 4. When using WeChat Lingqiantong, users should also strengthen the protection of personal accounts, set complex passwords, change passwords regularly, and not disclose personal information at will.

How to recover chat history after deleting friends on WeChat How to recover chat history after deleting friends on WeChat Apr 29, 2024 am 11:01 AM

1. Open the WeChat app, click [Address Book] at the bottom of the interface, and click [New Friend]. 2. Enter the friend’s WeChat ID or nickname in the search box at the top of the page. 3. If the other party has not deleted the user, the user can find the friend in the search results. 4. Click on the friend to enter the chat window with him or her, and you can view the previous chat history.

How to transfer WeChat chat history to another mobile phone How to transfer WeChat chat history to another mobile phone May 08, 2024 am 11:20 AM

1. On the old device, click "Me" → "Settings" → "Chat" → "Chat History Migration and Backup" → "Migrate". 2. Select the target platform device to be migrated, select the chat records to be migrated, and click "Start". 3. Log in with the same WeChat account on the new device and scan the QR code to start chat record migration.

People familiar with the matter responded that 'WeChat may not support Apple iPhone 16': Rumors are rumors People familiar with the matter responded that 'WeChat may not support Apple iPhone 16': Rumors are rumors Sep 02, 2024 pm 10:43 PM

Rumors of WeChat supporting iPhone 16 were debunked. Thanks to netizens Xi Chuang Jiu Shi and HH_KK for submitting clues! According to news on September 2, there are rumors today that WeChat may not support iPhone 16. Once the iPhone is upgraded to the iOS 18.2 system, it will not be able to use WeChat. According to "Daily Economic News", it was learned from people familiar with the matter that this rumor is a rumor. Apple's response: According to Shell Finance, Apple's technical consultant in China responded that the issue of whether WeChat can continue to be used on iOS systems or Apple devices, and whether WeChat can continue to be listed and downloaded in the Apple App Store, needs to be resolved between Apple and Tencent. Only through communication and discussion can we determine the future situation. Currently, Apple is actively communicating with Tencent to confirm whether Tencent will continue to

See all articles