我正在尝试创建一个twitch机器人,而我要做的第一件事就是响应聊天消息。但是,当漫游器连接到聊天室时,它似乎并没有保持连接状态。它可以很好地发送聊天消息,但不能接收。

如果您想看一下,请看下面的代码。我觉得我缺少了一些我应该记住的基本知识,因此,如果您能弄清楚我想知道什么。

package me.acezephyr.lavabot;

import java.io.IOException;

import org.jibble.pircbot.IrcException;
import org.jibble.pircbot.NickAlreadyInUseException;
import org.jibble.pircbot.PircBot;

public class LavaStreamBot extends PircBot {

private static LavaStreamBot INSTANCE = new LavaStreamBot();

public static void main(String[] args) {
    INSTANCE.setVerbose(true);
    INSTANCE.setName("LavaStreamBot");
    try {
        INSTANCE.connect("irc.twitch.tv", 6667,
                "oauth:******************************");
    } catch (NickAlreadyInUseException e) {
        System.err
                .println("Tried to join Twitch server, but someone else online already has the nick LavaStreamBot.");
    } catch (IOException e) {
        e.printStackTrace();
    } catch (IrcException e) {
        e.printStackTrace();
    }
    join("#AceLava");
}

public static void join(String channel) {
    INSTANCE.joinChannel(channel);
    INSTANCE.sendMessage(channel, "LavaStreamBot is now in this channel.");
}

@Override
public void onConnect() {
    System.out.println("Connected to server");
    super.onConnect();
}

@Override
public void onMessage(String channel, String sender, String login, String hostname, String message){
    System.out.println("Got a message!");
    super.onMessage(channel, sender, login, hostname, message);
}


}

最佳答案

您用大写字母写了频道名称(“ #AceLava”)。在IRC中,这是与#acelava不同的通道-Twitch始终处理所有小写字母的通道。只需更改它,一切都会好起来的。

与问题无关,但您可能想知道以下事实:抽搐将很快更改其后台消息传递服务™,并且不会通过IRC进行更改,因此您必须相应地更改机器人(以及我我必须做>。
有关更多信息并保持最新,请访问http://discuss.dev.twitch.tv/

关于java - 我的Twitch机器人(使用Pircbot)没有保持与 channel 的连接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32058602/

10-12 02:01