不再支持配置网页链接跳转,请选择小程序替代 hint: [DcJy0720ce69]

一、创建卡劵

     微信对接接口:

https://api.weixin.qq.com/card/create?access_token=ACCESS_TOKEN

     对接access_token:access_token自己平台的token。

     对接参数:

{ "card": {
  "card_type": "GROUPON",
  "groupon": {
      "base_info": {
          "logo_url": "http://mmbiz.qpic.cn/mmbiz/iaL1LJM1mF9aRKPZJkmG8xXhiaHqkKSVMMWeN3hLut7X7hicFNjakmx ibMLGWpXrEXB33367o7zHN0CwngnQY7zb7g/0",
          "brand_name":"微信餐厅",
          "code_type":"CODE_TYPE_TEXT",
          "title": "132元双人火锅套餐",
          "sub_title": "周末狂欢必备",
          "color": "Color010",
          "notice": "使用时向服务员出示此券",
          "service_phone": "020-88888888",
          "description": "不可与其他优惠同享\n如需团购券发票,请在消费时向商户提出\n店内均可使用,仅限堂食",
          "date_info": {
              "type": "DATE_TYPE_FIX_TERM",
              "fixed_term": 15 ,
              "fixed_begin_term": 0
          },
          "sku": {
              "quantity": 500000
          },
          "get_limit": 3,
          "use_custom_code": false,
          "bind_openid": false,
          "can_share": true,
        "can_give_friend": true,
          "location_id_list" : [123, 12321, 345345],
          "custom_url_name": "立即使用",
          "custom_url": "http://www.qq.com",
          "custom_url_sub_title": "6个汉字tips",
          "promotion_url_name": "更多优惠",
        "promotion_url": "http://www.qq.com"
      },
      "deal_detail": "以下锅底2选1(有菌王锅、麻辣锅、大骨锅、番茄锅、清补凉锅、酸 菜鱼锅可选):\n大锅1份 12元\n小锅2份 16元 "}
}}

  测试平台:http://mp.weixin.qq.com/debug/  或者使用postman工具

  得到的结果:不再支持配置网页链接跳转,请选择小程序替代 hint: [DcJy0720ce69]

二、解决方案

    产生的原因:微信平台下线了跳转的功能,传参中含有跳转链接的URL,都不能执行。

     解决措施:去掉含有跳转的路径如 custom_url、promotion_url、center_url

猜你喜欢

转载自blog.csdn.net/baidu_28068985/article/details/103452328