java-wechaty
java-wechaty copied to clipboard
Java Wechaty is a Conversational SDK for Chatbot Makers Written in Kotlin
debug 跟进发现这个方法的mentionList参数没有用到 ``` override fun messageSendText(conversationId: String, text: String, mentionList: List?): Future { val request = Message.MessageSendTextRequest.newBuilder() .setConversationId(conversationId) .setText(text) //遗漏了这行 .addAllMentonalIds(mentionList) .build() return CompletableFuture.supplyAsync { val response = grpcClient!!.messageSendText(request) val...
比如程序启动后,我想在后台指定给某人发消息,这个应该怎么实现呢?
According to our Wechaty Specification : The `WECHATY_LOG` should support the values of `silly`, `verbose`, `info`, `warn`, `silent` All Polyglot Wechaty should at least support the above names as an...
0.`git clone https://github.com/wechaty/java-wechaty.git` 1.修改了文件加入了token(企业微信的token) 2.`cd examples/ && mvn install` 3.`java -jar target/wechaty-example-1.0.0-SNAPSHOT-jar-with-dependencies.jar` 4. ``` SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder...
可以给一个java版本的试用token调试么? 谢谢 非常想参与进来
机器人入群后,在onJoinin中调用room.memberAll或room.memberList 返回的contact对象里,contactId都是roomId,其余信息都是空的 版本0.1.5-snapshot
**Is your feature request related to a problem? Please describe.** Some gRPC server use `token` to identify the current user in the same service port. **Describe the solution you'd like**...
1. Add `WECHATY_PUPPET_SERVICE_TOKEN` support for all our Polyglot Wechaty projects. 2. Make `WECHATY_PUPPET_HOSTIE_TOKEN` an alias for `WECHATY_PUPPET_SERVICE_TOKEN`, and print a warning message to let the user know it was deprecated...
maven仓库里下载不下来?
Version is newest [a0a374b](https://github.com/wechaty/java-wechaty/commit/a0a374b8db2575f39306cbb0aa84b5950ff35a74) token is `puppet_wxwork_xxxxxxxxxx` Just `onRoomJoin` and `onRoomLeave` not working. But other functions is fine (for example `onRoomTopic` is working well). ```java wechaty.onRoomJoin(...) // not working ......