我正在尝试通过自己连接到webscoket来抓取具有websocket连接的网页。这是我的代码:
from websocket import create_connection
import json
headers = json.dumps({
'Connection': 'Upgrade',
'Pragma': 'no-cache',
'Cache-Control': 'no-cache',
'Upgrade': 'websocket',
'Origin': 'https://www.bet777.be',
'Sec-WebSocket-Version': 13,
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',
'Accept-Encoding': 'gzip, deflate, br',
'Accept-Language': 'es,en;q=0.9,pl;q=0.8,es-AR;q=0.7',
'Sec-WebSocket-Key': 'mYc+hqhy8sUyeilrxyxSPA==',
'Sec-WebSocket-Extensions': 'permessage-deflate;
client_max_window_bits',
})
ws = create_connection('wss://pushserver-
uk.sbtech.com/signalr/connecttransport=webSockets&clientProtocol=1.5&connectionToken=nOugyCC54kCePwbLVXCfkfpxZsipI83mU476SdYNspEAD2U0%2F3O44lja67ujJErljZiflHtWyOwELt0OHfQhBQxXu14hVe8zE%2Fr4syolXWBCWWoG%2B2D8WwmUCxi5HSUz4&connectionData=%5B%7B%22name%22%3A%22communicationhub%22%7D%5D&tid=9', header=headers)
ws.send('''{"H":"communicationhub","I":0,"M":"Introduce"}''')
while True:
print(ws.recv)
我收到以下错误:
File "/home/gonzalo/.local/lib/python3.6/site-packages/websocket/_handshake.py", line 124, in _get_handshake_headers
key = options['header']['Sec-WebSocket-Key']
TypeError: string indices must be integers
如果我删除了Sec-WebScoket-Key部分,则会收到400状态响应。
有什么想法我做错了吗?
编辑:使用字典而不是json.dump会收到以下错误。 文件 “ /home/gonzalo/.local/lib/python3.6/sitepackages/websocket/_handshake.py”, 第139行,在 如果v不是None
TypeError:序列项目1:预期的str实例,找到的int
答案 0 :(得分:0)
header
的{{1}}参数应该是字典,而不是JSON字符串,因此,不要使用websocket.create_connection
将字典转换为字符串,而应将字典直接作为标头传递:
json.dumps