-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
输入验证码verify-code事件监听无效 #290
Comments
@charleyCC 需要把手机端收到的验证码,输入到 enterVerifyCode 方法中。 |
你好,要从enterVerifyCode这里获取到验证码我是知道的,只是你看我onVerifyCode的方法打印的信息都没有执行到呢,是压根就没有进来onVerifyCode这个方法呢,也就是没有触发到verify-code事件呢 |
@charleyCC 你手机端的企业微信的版本是多少? |
4.1.9呢 |
关键的问题不是旧的依赖有没有卸载,是你在实际使用过程中实例化的时候使用的是哪个包。 比如你本来创建实例的时候用的是 import { WechatyBuilder } from 'wechaty'
const bot = WechatyBuilder.build({
puppet: 'wechaty-puppet-service',
puppetOptions: {
token,
tls: {
disable: true
}
}
}) 那对应的就要修改为 import { WechatyBuilder } from '@juzi/wechaty'
const bot = WechatyBuilder.build({
puppet: '@juzi/wechaty-puppet-service',
puppetOptions: {
token,
tls: {
disable: true
}
}
}) |
@charleyCC 也可以考虑使用 https://github.com/RPAChat/workpro-getting-started/tree/latest-features 这个repo中的代码尝试复现下问题。 |
有的,就是上面su-chang提供的那个地址,可以利用github codespace直接运行的 |
问题已解决,Issue关闭。 |
#267 根据这个issue去安装依赖,注册verify-code事件后没有触发
我的环境
机器:mac
node:v18.18.0
npm:9.8.1
用的是https://github.com/wechaty/getting-started 起的项目,安装的依赖为
相关代码:
注册的verify-code
扫描二维码后就一直提示
The text was updated successfully, but these errors were encountered: