创建一个机器人进行抽搐聊天。获取连接错误

时间:2016-05-11 18:23:33

标签: java login twitch disconnect pircbot

我试图为我的抽搐聊天做一个机器人,但是我有一些问题需要连接聊天。 我在下面阅读了一些关于图书馆的文章: http://www.jibble.org/pircbot.php 并尝试连接到我自己的聊天,但我收到了错误。

1462989951913 *** Connected to server.
1462989951915 >>>PASS oauth:cencoring oath.
1462989951915 >>>NICK FredsBot
1462989951915 >>>USER FredsBot 8 * :PircBot 1.5.0 Java IRC Bot - www.jibble.org
1462989952324 :tmi.twitch.tv NOTICE * :Error logging in
1462989962324 *** Logged onto server.
Connected!
1462989962324 >>>JOIN #mychannel
1462989962324 *** Disconnected.

正如您所看到的,我在尝试登录时遇到错误,但它确实打印出已连接的消息并在断开连接之后。 到目前为止,我已经尝试了不同的誓言密钥而没有任何运气。有没有人偶然发现这个问题? 继承我的代码:

import org.jibble.pircbot.*;

public class MyBot extends PircBot {

    private static final String channelName = "#mychannel";
    private final String botName = "FredsBot";

    public MyBot() {
        this.setName(botName);
        this.setLogin(botName);

    }

    public String getchannelName() {
        return channelName;
    }

    @Override
    public void onMessage(String channel, String sender,
            String login, String hostname, String message) {
        if (message.equalsIgnoreCase("time")) {
            String time = new java.util.Date().toString();
            sendMessage(channel, sender + ": The time is now " + time);
        }
    }

    @Override
    protected void onConnect() {
        System.out.println("Connected!");
        joinChannel(channelName);


        super.onConnect();
        sendMessage(getchannelName(), "Hello, i am a bot");



       }

我的主要看起来像这样

    private static final String OAUTH = "myoath";
    private static final String ADRESS = "irc.chat.twitch.tv.";
    private static final int PORT = 6667;

    public static void main(String[] args) {

        MyBot bot = new MyBot();

        bot.setVerbose(true);

        try {

            bot.connect(ADRESS, PORT, OAUTH);
            //  bot.onMessage(channelName, "Bot", channelName, channelName, channelName);
        } catch (IOException ex) {
            Logger.getLogger(MainFile.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IrcException ex) {
            Logger.getLogger(MainFile.class.getName()).log(Level.SEVERE, null, ex);
        }

    }

我只是誓言我的誓言和频道名称,所以不要介意。我确实阅读了类似的帖子,但大多数都只是解决了,但得到了一个新的誓言密钥,它没有帮助我。

1 个答案:

答案 0 :(得分:1)

所以我发现了问题所在。我不知道我需要使用我在代码中声明的确切名称为机器人创建一个帐户。 愚蠢的错误。