NickWang
NickWang
https://github.com/wechaty/wechaty/issues/2415
### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe. When sending a...
As we agreed in this PR https://github.com/wechaty/docusaurus/pull/1525#issuecomment-1610022965 New doc will be pushed section by section. The next section will only be pushed if the previous one is approved. And after...
I am planning on a major update for wechaty API document, considering there are many elementary wechaty related enquries since we launched workpro. Most of our customers are from China,...
example: ```ts async function main() { await new Promise(resolve => { setTimeout(resolve, 1000 * 60) }) } const signals = [ 'SIGHUP', 'SIGINT', 'SIGTERM', 'SIGQUIT', 'SIGABRT', // 'SIGKILL', 'SIGUSR1', 'SIGUSR2'...
https://github.com/wechaty/wechaty/issues/2539
# 监听与输入企业微信登录验证码 近期,企业微信在一些账号首次登录设备时,会要求输入验证码。形式如下:  为了尽快适配此功能,我们在 @juzi/wechaty 包中率先实现了验证码事件和输入验证码的方法。我们也会接下来推动这一方法在社区版实现。需要注意的是,我们目前只能保证 node 版 wechaty 的使用体验,暂时没有多余的人手推动其他版本的迭代,为了更好的使用 token ,请尽量使用 node 版本的 wechaty。 ( @juzi/wechaty 只提供了 node 版本) ## 依赖版本 @juzi/[email protected] @juzi/[email protected] @juzi/[email protected] ## 类型定义 ```ts export...
# Enter verify code to login to wecom token Recently, some wecom account requires a verify-code to login to desktop client. It looks like this:  To make these accounts...
In current puppet-implementation.ts, there are lots of ```@typescript-eslint/no-misused-promises``` problems. According to https://stackoverflow.com/questions/63488141/promise-returned-in-function-argument-where-a-void-return-was-expected, and handleUnaryCall definition ```ts export type handleUnaryCall = (call: ServerUnaryCall, callback: sendUnaryData) => void; ``` The return type...