VKApiJava · Docs and Guide # NOT READY
VKApiJava - this is a library that allows you to easily create chat bots via Long poll VK.
src/main/java/commands/testCommand.java
public class testCommand extends EventListener {
@Override
public void onMessageReceived(OnMessageReceivedContext event) {
event.respond("Test message!").queue();
}
}src/main/java/Main.java
public class Main {
public static void main(String[] args) throws VKException {
String token = "...";
String groupId = "...";
VKApi vkApi = new VKApiBuilder(token, groupId)
.addEventListener(new testCommand())
.build();
}
}