个人案例
- 山河软件服务
我的小商店我的小商店我的小商店
我的小商店扫码体验
- 该账号已注销
山河生活馆
山河生活馆扫码体验
- 轻简健康
管理您的饮食健康
轻简健康扫码体验
- 公众号文章搜索不到能有人处理吗?
公众号名称:惠房宝 ID:gh_527202e4e281 问题:公众号全部文章无法搜一搜正常检索 示例文章:《断供近三年!闵行浦江 万达旁+轨交旁+水岸美宅 4字头新房即将到来!》https://mp.weixin.qq.com/s/8T9Qg12Qzc6PYtrN0BizEQ [图片] ,[图片]
2023-06-29 - wechatpay-php 报错Cannot load privateKey from
wechatpay-php 报错 Rsa::from 报错 Cannot load privateKey from(string), please take care about the \$thing input /** * 构建一个客户端实例 * wechatpay-php */ public static function instanceWeChatPay() { // 商户号 $merchantId = WeChat::$merchantId; // 从本地文件中加载商户API私钥,商户API私钥会用来生成请求的签名 //dd(WeChat::$merchantPrivateKeyFilePath); 路径 //"D:\web\3boat\storage\cert\wechat\4C1BBE189365B735FF1B7AE9A63EDCB7CDA49093\apiclient_key.pem" $merchantPrivateKeyInstance = Rsa::from(WeChat::$merchantPrivateKeyFilePath, Rsa::KEY_TYPE_PRIVATE); dd($merchantPrivateKeyInstance); // 商户API证书序列号 $merchantCertificateSerial = WeChat::$merchantCertificateSerial; // 从本地文件中加载微信支付平台证书,用来验证微信支付应答的签名 $platformPublicKeyInstance = Rsa::from(WeChat::$platformCertificateFilePath, Rsa::KEY_TYPE_PUBLIC); // 获取微信支付平台证书序列号 $platformCertificateSerial = PemUtil::parseCertificateSerialNo(WeChat::$platformCertificateFilePath); // 构造一个 APIv3 客户端实例 WeChat::$instance = Builder::factory([ 'mchid' => $merchantId, 'serial' => $merchantCertificateSerial, 'privateKey' => $merchantPrivateKeyInstance, 'certs' => [ $platformCertificateSerial => $platformPublicKeyInstance, ], ]); }
2021-12-27 - 新申请的模板消息字体颜色设置不生效?
如题,为什么我们新申请的模板消息 ,字体颜色始终是黑色???
2023-01-02 - Android微信支付SDK,接入报错
MicroMsg.SDK.WXApiImplV10: handleIntent fail, ex = String resource ID #0x0 无法调起微信支付,请问是啥原因
2020-06-24 - 吊起微信支付失败
提示这个: E/ActivityThread: Failed to find provider info for com.tencent.mm.sdk.plugin.provider D/MicroMsg.SDK.WXApiImplV10: pay, set wxappPayEntryClassname = null E/MicroMsg.SDK.WXApiImplV10: get from metaData failed : com.tencent.mm E/MicroMsg.SDK.WXApiImplV10: pay fail, wxappPayEntryClassname is null
2021-11-08 - 报告一个bug:wx.onBluetoothDeviceFound
当ble外设有scan response时,scan response里的ManufacturerData2和广播包里的ManufacturerData1会合并在advertisData里。 问题:在ios和android上ManufacturerData字段的合并顺序不一致。 在ios的顺序:ManufacturerData1,ManufacturerData2 在android的顺序:ManufacturerData2,ManufacturerData1 期望的行为:合并的顺序保持一致,并且按照BLE规范, iOS的顺序才是对的。
2023-01-27 - wx.onBluetoothDeviceFound()方法为什么一直进入不了回调?
startBluetoothDevicesDiscovery输出了success回调的信息,之后控制台没有任何输出和报错,没有进入onBluetoothDeviceFound回调,微信版本号: 8.0.28,andiord12,红米K50pro,基础版本库2.27.0[图片]
2022-10-18 - 鸿蒙系统蓝牙功能无效
https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth/wx.getBluetoothDevices.html 华为鸿蒙系统蓝牙功能异常,wx.getBluetoothDevices 和 wx.onBluetoothDeviceFound 这两个接口无法获取到蓝牙设备数据,是不是还没有兼容过来?
2021-09-14 - 微信公众号页面缓存问题
html页面放到公众号里面,每次都要自己清除微信的缓存才能访问到最新版本,我每次更新外网页面时都在链接后面加了个版本号还是不行,怎么样才能正真去掉这个缓存呢?
2019-08-23 - 微信公众号(测试号),自定义分享不生效(wx.config:ok; checkJsApi:ok)?
引入的是jweixin-1.4.0.js;测试号也填了安全域名;但是自定义的分享就是不生效 [图片] [图片]
2019-12-24