微信小程序——卡券

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// addCard
app.func.req('获取Signature的Url', {}, function (res) {
  if (res.State) {
    wx.addCard({
      cardList: [
        {
          cardId: '微信公众平台申请的会员卡的Id',
          cardExt: '{
          "code": "", 
          "openid": "", 
          "timestamp": ' + res.Timestamp + ', 
          "signature":"' + res.ExtSign + '",
          "nonce_str":"' + res.Noncestr + '"
          }'
        } //cardExt中的参数全部来源于后台提供
      ],
      success: function (res) {
        // console.log('成功',res)
        app.func.req('解密卡券code', { uid:UserId, code: encodeURIComponent(res.cardList[0].code) }, function (res) {
          // console.log(res)
          //这里请求的接口是将用户获取到的code给后台存起来,openCard会用到
        })
      },
      fail:function(res){
        // console.log('失败',res)

      }
    })
  }
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// openCard
app.func.req('通过用户的id获取到用户的code接口', { uid:UserId }, function (res) {
  if (res.State) {
    wx.openCard({
      cardList: [
        {
          cardId: '微信公众平台申请的会员卡的Id',
          code: res.Msg,//后台返回的用户code
        }
      ],
      complete: function (res) {
        // console.log(res)
      },
      success: function (res) {
        // console.log(res)
      }
    })
  }
})

 

更多详细说明请访问 这里

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
对于微信卡券的开发,需要先进行微信公众号或小程序的授权认证,获取到相关的 API 信息。然后根据不同的卡券类型,进行相应的开发。 下面以微信小程序为例,介绍一下卡券的开发流程: 1. 配置小程序的接口权限,包括卡券相关的接口权限。 2. 创建卡券,可以在微信公众平台或小程序后台进行创建。创建时需要填写卡券的基本信息,包括卡券的类型、商户信息等。 3. 使用 API 接口进行卡券的管理,包括卡券的发放、核销等。需要对 API 进行相应的封装,方便开发人员进行调用。 4. 在小程序中展示卡券,可以通过卡券列表、卡券详情页等方式进行展示。 这里提供一个简单的 PHP 微信卡券 demo,供参考: ```php <?php // 设置公众号或小程序的 appid 和 appsecret $appid = 'your_appid'; $appsecret = 'your_appsecret'; // 获取 access_token $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$appsecret; $response = file_get_contents($url); $result = json_decode($response, true); $access_token = $result['access_token']; // 创建卡券 $url = 'https://api.weixin.qq.com/card/create?access_token='.$access_token; $data = array( 'card' => array( 'card_type' => 'GROUPON', 'groupon' => array( 'base_info' => array( 'logo_url' => 'http://mmbiz.qpic.cn/mmbiz_jpg/xxxxxxxx/0', 'brand_name' => '测试商户', 'code_type' => 'CODE_TYPE_QRCODE', 'title' => '测试优惠券', 'sub_title' => '测试商户', 'color' => 'Color010', 'notice' => '测试优惠券', 'service_phone' => '18888888888', 'description' => '测试优惠券', 'date_info' => array( 'type' => 'DATE_TYPE_FIX_TIME_RANGE', 'begin_timestamp' => strtotime('2021-01-01'), 'end_timestamp' => strtotime('2021-12-31') ), 'sku' => array( 'quantity' => 1000000 ), 'get_limit' => 1, 'use_custom_code' => false, 'bind_openid' => false, 'can_share' => true, 'can_give_friend' => true, 'location_id_list' => array(), 'url_name_type' => 'URL_NAME_TYPE_RESERVATION', 'custom_url' => 'http://www.xxx.com', 'source' => '测试商户' ), 'deal_detail' => '测试详情' ) ) ); $data = json_encode($data, JSON_UNESCAPED_UNICODE); $response = http_post_data($url, $data); $result = json_decode($response, true); $card_id = $result['card_id']; // 发放卡券 $url = 'https://api.weixin.qq.com/card/groupon/add?access_token='.$access_token; $data = array( 'card_id' => $card_id, 'quantity' => 10 ); $data = json_encode($data, JSON_UNESCAPED_UNICODE); $response = http_post_data($url, $data); $result = json_decode($response, true); echo $result['errcode'] == 0 ? '发放成功' : '发放失败'; // 核销卡券 $url = 'https://api.weixin.qq.com/card/code/consume?access_token='.$access_token; $data = array( 'code' => 'xxxxxxxx', 'card_id' => $card_id ); $data = json_encode($data, JSON_UNESCAPED_UNICODE); $response = http_post_data($url, $data); $result = json_decode($response, true); echo $result['errcode'] == 0 ? '核销成功' : '核销失败'; // 查询卡券详情 $url = 'https://api.weixin.qq.com/card/get?access_token='.$access_token; $data = array( 'card_id' => $card_id ); $data = json_encode($data, JSON_UNESCAPED_UNICODE); $response = http_post_data($url, $data); $result = json_decode($response, true); print_r($result); function http_post_data($url, $data_string) { $ch = curl_init(); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', 'Content-Length: ' . strlen($data_string) )); $response = curl_exec($ch); curl_close($ch); return $response; } ?> ``` 需要注意的是,此 demo 中的 access_token 获取方式不够安全,建议使用官方 SDK 或者其他安全的方式进行获取。另外,卡券的创建、发放、核销等操作需要根据实际情况进行调整。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值