使用 autobahn python 发送 json

Send json with autobahn python

本文关键字:json 发送 python autobahn 使用      更新时间:2023-09-26

我正在尝试将 json 内容从 url widh sendMessage 发送到客户端。

def broadcast(self):
  response = urllib2.urlopen('http://localhost:8001/json?as_text=1')
  data = json.load(response)
  for c in self.clients:
     c.sendMessage(data)

我收到错误

File "myServer.py", line 63, in broadcast
c.sendMessage(data)
File "/Library/Python/2.7/site-packages/autobahn-0.6.3-py2.7.egg/autobahn    /websocket.py",     line 2605, in sendMessage
self.sendMessageHybi(payload, binary, payload_frag_size, sync, doNotCompress)
  File "/Library/Python/2.7/site-packages/autobahn-0.6.3-py2.7.egg/autobahn    /websocket.py", line 2671, in sendMessageHybi
    self.sendFrame(opcode = opcode, payload = payload, sync = sync, rsv = 4 if     sendCompressed else 0)
  File "/Library/Python/2.7/site-packages/autobahn-0.6.3-py2.7.egg/autobahn/websocket.py", line 2161, in sendFrame
raw = ''.join([chr(b0), chr(b1), el, mv, plm])
exceptions.TypeError: sequence item 4: expected string, dict found

sendMessage接受字节字符串或Unicode字符串 - 而不是字典。 这是因为 WebSocket 是二进制数据和文本数据的传输。 它不是结构化对象的传输。

您可以发送字典的 JSON 编码形式,但不能发送字典本身:

def broadcast(self):
    response = urllib2.urlopen('http://localhost:8001/json?as_text=1')
    for c in self.clients:
        c.sendMessage(response)

但请注意,您实际上需要使用twisted.web.client - 而不是阻塞urllib2

from twisted.internet import reactor
from twisted.web.client import Agent, readBody
agent = Agent(reactor)
def broadcast(self):
    getting = agent.request(
        b"GET", b"http://localhost:8001/json?as_text=1")
    getting.addCallback(readBody)
    def got(body):
        for c in self.clients:
            c.sendMessage(body)
    getting.addCallback(got)
    return getting