Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用https://github.com/taksan/skype-java-api但我无法获得群聊 ID。当我做:
Chat[] allChats = Skype.getAllChats();
它只能与一个人聊天。有什么解决办法吗?
这应该可以解决问题。
Group[] allGroups = Skype.getContactList().getAllGroups(); for (Group group : allGroups) { System.out.println(group.getId()); }