java-wechaty icon indicating copy to clipboard operation
java-wechaty copied to clipboard

Java Wechaty is a Conversational SDK for Chatbot Makers Written in Kotlin

Results 48 java-wechaty issues
Sort by recently updated
recently updated
newest added

多客户端共同都要用的docker里面的程序,源码在哪里 如下有docker运行的操作手册 https://github.com/wechaty/wechaty/issues/1985

java版本的需要启动一个wechaty的网关,网关也是绑定token启动的,请问我现在要部署多个token该如何处理呢?难道要部署多个网关?

UOS 可以让web协议恢复了,什么时候更新维护呢

io.grpc.StatusRuntimeException: UNAVAILABLE: Network closed for unknown reason at io.grpc.stub.ClientCalls.toStatusRuntimeException(ClientCalls.java:244) at io.grpc.stub.ClientCalls.getUnchecked(ClientCalls.java:225) at io.grpc.stub.ClientCalls.blockingUnaryCall(ClientCalls.java:142) at io.github.wechaty.grpc.PuppetGrpc$PuppetBlockingStub.start(PuppetGrpc.java:2744) at io.github.wechaty.grpc.GrpcPuppet.start(GrpcPuppet.kt:78) at io.github.wechaty.Puppet.reset(Puppet.kt:310) at io.github.wechaty.Puppet$3.handler(Puppet.kt:104) at io.github.wechaty.Puppet$on$14.handler(Puppet.kt:278) at io.github.wechaty.eventEmitter.EventEmitter$emit$$inlined$forEach$lambda$1.run(EventEmitter.kt:49) docker端生成token,java端使用token;两者通信正常(ping的通,端口监听开放) 有没有解决的方案呢?

您好,我这边尝试用java版本sdk wechaty本地docker启动0.78版本。程序无法启动

io.grpc.StatusRuntimeException: UNAUTHENTICATED: {code:8,message:"A token(120.55.60.194:7777) must be prefixed with a 'puppet_' "}

Exception in thread "pool-10-thread-3" java.lang.Error: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Can't get the number of an unknown enum value. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1148) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:748) Caused by: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Can't get the number...

Exception in thread "pool-9-thread-2" java.lang.Error: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Can't get the number of an unknown enum value. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1155) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:823) Caused by: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Can't get the number...

token是申请的15天的token. 企业微信版本. 扫码成功后报错. 求教各位大神我该如何处理该问题呢? 我该如何修复呢? 代码: ```java class Bot{ public static void main(String args[]){ final String token = System.getenv("WECHATY_PUPPET_HOSTIE_TOKEN"); Wechaty bot = Wechaty.instance(token) .onScan((qrcode, statusScanStatus, data) -> System.out.println(QrcodeUtils.getQr(qrcode))) .onLogin(user ->...