我们开了「运营帐户」,现在想关都没法关。。。资金进出困扰还比较大。。。建议你们得仔细考虑收/支分离需求而再开通。。。
退款支出分离开通需要多久?已经等了一周多了,还需要等多久呀?请问谁开通过麻烦来给解答一下呀?
2021-07-28wechatpay/wechatpay 要求 guzzlehttp/guzzle >= 7.0
Error: Undefined class constant 'MAJOR_VERSION' in微信支付v3 [图片]
2021-07-28开放平台的网站应用appid不支持绑定微信支付商户号
当前商户号暂不支持关联该类型的AppID商户号 1611927867 AppId wx67b7c4a2cf19647d 商户号 和 网站appId 都是同一主题, 在微信商户平台绑定时, 提示 “当前商户号暂不支持关联该类型的AppID”
2021-07-28最低0.2%按微信支付政策走(当前半年期,自动会续期)优惠费率为线下场景,线上如开通app/h5支付不可调整
服务商为特约商户调整费率可至多少呢?我们是SAAS服务商,计划成为微信支付的服务商,为旗下客户办理特约商户支付能力,想进一步了解下: 是否最低可降至0.2%呢?是否不同行业可调整的幅度不一样降低费率的有效期是永久,还是按年(或其他区间)进行申请呢?降低的费率是否可应用于线上支付端口呢?还是仅限线下的扫码支付/收款码支付
2021-07-28把发送的json打印出来看看
H5下单API 400?Map<String,Object> map = new HashMap<>(); map.put("appId",appId); map.put("mchid",mchId); map.put("description",appId); map.put("out_trade_no",orderSn); map.put("notify_url","https://weixin.qq.com/"); Map<String,Object> amount = new HashMap<>(); amount.put("total",money); amount.put("currency","CNY"); map.put("amount",amount); Map<String,Object> sceneInfo = new HashMap<>(); sceneInfo.put("payer_client_ip",ip); Map<String,Object> h5Info = new HashMap<>(); h5Info.put("type","Wap"); sceneInfo.put("h5_info",h5Info); map.put("scene_info",sceneInfo); String param = JSON.toJSONString(map);
2021-07-28这是APIv2,total_fee给分为单位的字符串就行
无法将输入源“/body/xml/total_fee”映射到目标字段“标价金额”中?无法将输入源“/body/xml/total_fee”映射到目标字段“标价金额”中,此字段需要一个合法的 64 位有符号整数。
2021-07-27/** * Takes a base64 encoded string and decrypts it using a given key, iv and aad. * * @param string $ciphertext - The base64-encoded ciphertext. * @param string $key - The secret key, 32 bytes string. * @param string $iv - The initialization vector, 16 bytes string. * @param string $aad - The additional authenticated data, maybe empty string. * * @return string - The utf-8 plaintext. */ public static function decrypt(string $ciphertext, string $key, string $iv = '', string $aad = ''): string { $ciphertext = base64_decode($ciphertext); $authTag = substr($ciphertext, intval(-static::BLOCK_SIZE)); $tagLength = strlen($authTag); /* Manually checking the length of the tag, because the `openssl_decrypt` was mentioned there, it's the caller's responsibility. */ if ($tagLength > static::BLOCK_SIZE || ($tagLength < 12 && $tagLength !== 8 && $tagLength !== 4)) { throw new RuntimeException('The inputs `$ciphertext` incomplete, the bytes length must be one of 16, 15, 14, 13, 12, 8 or 4.'); } $plaintext = openssl_decrypt(substr($ciphertext, 0, intval(-static::BLOCK_SIZE)), static::ALGO_AES_256_GCM, $key, OPENSSL_RAW_DATA, $iv, $authTag, $aad); if (false === $plaintext) { throw new UnexpectedValueException('Decrypting the input $ciphertext failed, please checking your $key and $iv whether or nor correct.'); } return $plaintext; } 摘自 composer require wechatpay/wechatpay 用法 \WeChatPay\Crypto\AesGcm::decrypt($resource['ciphertext'], $apiv3Key, $resource['nonce'], $resource['associated_data']); 你解密用的 `aeskey` 不是APIv3密钥
v3退款通知解密失败[图片] ciphertext = lQUHa/d5lTEvHOgbNwE4lgaVQ6ig1kIpUzMJ6RWi5TTAOZhy76OX475C/YHfYkGe4b4dVMZPdYKBfvjFLGAe1/v1eJLo9AEA7wyTY7eKFcvTnDc4WDMCWKaZcDKEDmEZMWibXotS2R78WLROpU89ylWH2fhJvhWk4BYcpfNxe2UpBklBByhZp4zhbl6NBVoMiE8BlrTNjoh7uISVf0PNZibiGzSBdrHn+kyURDoQ+xTyhUJbGN9hZ5d4wJcSAuTbVfawrDAfEq7UpL84oNs+Uzvwxc2UHNkBEqozuflSTPP7siiGPAS//j5GGpH4jjCejV9b9aqQyK8jJH+yEq9B9oiDEaUxW7avBlgBVk9TKRCAI8Gf075a7Gg2BNDJSxS2WPfBmJ12InW1ImGJ5Bh0HMsCwO/23NA+3xTXHBtfqJo4WyGZ21Jw+XlBEaePC1W3wfo3YCSBUxA1OUnaccKQtQddGMXwO8GpCLBbbIIOlUZTW8yit4K5glAHY3Po3e2zSLHLGr14bDdqQNgKTZdySUGHhLz2vAfH46M= associatedData = refund nonceStr = mX80szDPRumd aeskey = 94944cbdb0ceefe457f5f7ae708847eb 是哪一步出现问题?sodium和openssl_decode都无法解密
2021-07-272021-07-27的账单(当天)的不支持下载
下载交易账单总报错20001 错误消息返回空?[图片] 签名没有问题。 返回结果: <xml><return_code><![CDATA[FAIL]]></return_code> <return_msg><![CDATA[]]></return_msg> <error_code><![CDATA[20001]]></error_code> </xml>
2021-07-27商户涉嫌违规,已限制支付权限,请登录商户平台查看原因
APP内微信支付报错我微信支付的时候报错,报错信息是: 2021-07-22 11:53:18,831 WARN [com.avalon.web.sdk.PayController] - <error fail get order error onGetOrderIDWxPayException(customErrorMsg=null, returnCode=FAIL, returnMsg=商户涉嫌违规,已限制支付权限,请登录商户平台查看原因, resultCode=null, errCode=null, errCodeDes=null, xmlString=<xml><return_code><![CDATA[FAIL]]></return_code> <return_msg><![CDATA[商户涉嫌违规,已限制支付权限,请登录商户平台查看原因]]></return_msg> 我确认过, APP状态: 通过 微信支付的接口状态:已获得 跪求帮助!!
2021-07-26轻松付 可能把原始通知的request-id给过滤掉了,没给你看而已
api3.0是不是有的接口返回的请求头中不存在Request-ID目前对接了轻松付的签约成功 通知,发现请求头中没有Request-ID
2021-07-26