微信卡券---创建卡券---上传图片logo

本文介绍如何使用PHP实现微信卡券中图片Logo的上传功能。重点讲解了使用curl发送POST请求并设置SSL验证的方式,以及如何通过realpath获取图片的绝对路径。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

本博文主要向大家介绍一下微信卡券 — 图片logo 的功能接口对接。

  • 使用语言: PHP
  • 注意点:绝对路径、文件引流格式

    $url = "https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token={$token}";
    $logo ='F:\www\www.2017.com\wechat\12.jpg'; // 一定要图片的绝对路径
    $file = new \CURLFile(realpath($logo));   // php5.6以后用到这个curlfile类
    $arr['buffer'] = $file;           // 文件的数据流
    $arr['access_token'] = $token;   // 调用接口凭证

    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL,$url);
    //不需要验证ssl证书
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,FALSE);
    //设置获取的信息以文件流的形式返回,而不是直接输出
    curl_setopt($curl,CURLOPT_POST,1);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $arr);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER,1);
    $output = curl_exec($curl);
    print_r($output,true);

以上程序以亲测,返回成功(返回url)

realpath();该函数返回绝对路径。
该函数删除所有符号连接(比如 ‘/./’, ‘/../’ 以及多余的 ‘/’),返回绝对路径名。

若失败,则返回 false。比如说文件不存在的话。

对于微信的开发,需要先进行微信公众号或小程序的授权认证,获取到相关的 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 或者其他安全的方式进行获取。另外,创建、发放、核销等操作需要根据实际情况进行调整。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值