- 小程序支付时,有时候发生 微信支付请求失败,响应码 = 403,都有哪些原因?
这两天(之前没有发生过)晚上7点后小程序支付,偶尔发生这种错误: 微信支付请求失败,响应码 = 403,返回结果 = {"code":"NO_AUTH","message":"商户号该产品权限未开通,请前往商户平台>产品中心检查后重试"} 过一会再用小程序支付就正常。 我们检查了商户后台都正常。 这种怪异的现象的可能原因都有哪些? 小程序配置,开放平台配置和商户后台配置都正常,这个还有其他原因会导致这种现象发生吗? 谢谢
2023-10-26 - 使用wmpf的辅助注册jar出现Cannot run program "openssl" ?
在使用wmpf-signup-device-multi-platform-util-jvm-0.0.1.jar库进行 设备信息注册时,出现了 workingdir: /data/user/0/com.xx.xxx/cache/ 2023-07-28 03:42:07.942 17047-17047 System.err com.xx.xxx W java.io.IOException: Cannot run program "openssl" (in directory "."): error=13, Permission denied 错误。 然后跟踪发现代码是这里: parts参数数据正常。 在执行srat() 异常了。 真机和模拟器都出现了这种情况。 private fun String.runCommand(workingDir: File = File("./")) { try { val parts = this.split("\\s".toRegex()) val proc = ProcessBuilder(*parts.toTypedArray()) .directory(workingDir) .redirectOutput(ProcessBuilder.Redirect.INHERIT) .redirectError(ProcessBuilder.Redirect.INHERIT) .start() proc.waitFor(60, TimeUnit.MINUTES) } catch (e: IOException) { e.printStackTrace() } } android编译环境:(部分) compileSdk 33 defaultConfig { applicationId "com.xx.xxx" minSdk 26 targetSdk 33 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } implementation("com.squareup.okhttp3:okhttp:4.7.2") implementation 'com.google.code.gson:gson:2.8.6' implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72' implementation 'org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72'
2023-07-28 - 我开发的公众号项目中如何通过用户的微信号来获取用户信息并绑定到项目中?
我有这样的一个需求:我自己开发的公众号项目,里面有一个页面设置子管理员,此时我的计划是管理员输入用户A的微信号,然后程序自己在获取用户A信息,比如openid等自动绑定到公众号项目中,然后用户A在打开这个公众号后,通过授权信息后拿到openid等后和之前自动获取的进行比较,从而自动识别出当前的用户是否是已经设置好的子管理员账号并跳转到对应的管理页面。我没有查到这样的信息。还是说我用其他的什么方法可以实现我的目的? 谢谢。
2022-10-05 - 我的平台给入住商户/个人微信支付费用,手续费收取我的平台的还是入住用户的?
一般用户在给我的平台通过小程序付费的手续费我是清楚的。现在不是很清楚在我的平台用微信转账给入住我平台的商户/个人的时候,这个时候的手续费是如何收取的?是从我的平台收取还是收取入驻我的平台的商户/个人?
2022-09-01 - 开发工具重复提示canvas函数为定义的问题。每次运行都需要重新设置不同的基础库来解决?
系统: MacBook Pro macOS Montery 12.3.1 Intel Corei7 2.2GHz 4核 工具版本:最新版。 使用canvas显示图片时,总是报这个错误:TypeError: Cannot read property 'createImage' of undefined. 我通过更新基础库的方法解决。然后编写代码再次运行,又报同样的错误。也就是说我得每次都去更新下不同的基础库,程序才能运行。
2022-06-24 - canvas 2d android真机property 'createView' undefined
VM21:2 (in promise) MiniProgramError Cannot read property 'createView' of undefined TypeError: Cannot read property 'createView' of undefined at t.value (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:2237101) at t.value (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1868186) at A (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1868352) at t.value (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1868463) at eval (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:2566063) at new Promise (<anonymous>) at cc (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:2566025) at eval (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:2567487) at Array.forEach (<anonymous>) at n (eval at n.call.document (http://127.0.0.1:40184/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:2567465) errorReport @ VM21:2 runtime.js?devtools_ignore=true:1 [Violation] 'message' handler took 156ms
2021-03-11