我正在编写一个机器人来通过 IRC 监控 twitch.tv 上的聊天。以下是 Telnet 中成功连接和登录的样子:
Microsoft Telnet> o irc.twitch.tv 6667
PASS <password>
NICK <username>
:tmi.twitch.tv 001 <user> :Welcome, GLHF!
:tmi.twitch.tv 002 <user> :Your host is tmi.twitch.tv
:tmi.twitch.tv 003 <user> :This server is rather new
:tmi.twitch.tv 004 <user> :-
:tmi.twitch.tv 375 <user> :-
:tmi.twitch.tv 372 <user> :You are in a maze of twisty passages, all alike.
:tmi.twitch.tv 376 <user> :>
我写了一个简单的测试脚本,成功连接到服务器,但只接收到部分消息。
# irctest.py
import socket
HOST='irc.twitch.tv'
PORT=6667
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
s.sendall(b"PASS oauth:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\n")
s.sendall(b"NICK user\r\n")
data = s.recv(2048)
s.close()
print(repr(data.decode()))
打印的字符串data.decode()
只是成功连接响应的第一行:
':tmi.twitch.tv 001 <user> :Welcome, GLHF!\r\n'
这意味着连接按预期工作。我已经尝试过第二次s.recv(2048)
,但这会无限期地挂在s.settimeout(None)
. 我也尝试过增加缓冲区大小,但这似乎没有任何效果。有谁知道发生了什么?
Twitch 在此处有关于 IRC 连接的帮助文档。