1

I use https://github.com/taksan/skype-java-api but I can't get group chat id. When I do:

Chat[] allChats = Skype.getAllChats(); 

it only gets chats with one person. Any solution?

Konrad R
  • 65
  • 1
  • 10

1 Answers1

0

This should do the trick.

   Group[] allGroups = Skype.getContactList().getAllGroups();
   for (Group group : allGroups) {
       System.out.println(group.getId());
   }
Reg
  • 10,717
  • 6
  • 37
  • 54