GCM 无效的 JSON 缺少有效负载
Posted
技术标签:
【中文标题】GCM 无效的 JSON 缺少有效负载【英文标题】:GCM Invalid JSON Missing Payload 【发布时间】:2015-05-22 09:49:07 【问题描述】:我正在尝试使用 Python slimXMPP 通过 Google Cloud Messaging 发送消息。我尝试按照GCM docs 中的示例进行操作。但是,当我调用 send_command
时,我收到“InvalidJson:MissingPayload”错误响应 (400)。我在这里想念什么?以下是我使用的代码。
def random_id():
return ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(8))
class GcmNotifier(sleekxmpp.ClientXMPP):
def __init__(self, jid, password):
super(GcmNotifier, self).__init__(jid, password)
self.add_event_handler('message', self.on_message_received)
def send_gcm_message(self, message):
body = '<gcm xmlns:"google:mobile:data">%s</gcm>' % json.dumps(message)
print(body)
self.send_message(mto='', mbody=body)
def on_message_received(self, message):
print(message)
def send_command(self, recipient):
self.send_gcm_message(
'to': recipient,
'message_id': random_id(),
'data':
'hello': 'world'
)
xmpp = GcmNotifier(GCM_SENDER_ID + '@gcm.googleapis.com', GCM_API_KEY)
if xmpp.connect((GCM_SERVER, GCM_PORT), use_ssl=True):
xmpp.process(block=False)
这是我收到的错误:
<message to="REDACTED@gcm.googleapis.com/475DBA7C" type="error" xml:lang="en"><body>&lt;gcm xmlns:&quot;google:mobile:data&quot;&gt;&quot;to&quot;: &quot;REDACTED&quot;, &quot;data&quot;: &quot;hello&quot;: &quot;world&quot;, &quot;message_id&quot;: &quot;ZGDZ9QTD&quot;&lt;/gcm&gt;</body><error code="400" type="modify"><bad-request xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /><text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">InvalidJson : MissingPayload</text></error></message>
【问题讨论】:
【参考方案1】:事实证明,SleekXMPP 自动将我的消息包含在 <body />
标记中,这不是 GCM 服务器预期的消息格式。我最终通过定义自己的节来解决问题,如下所示:
class Gcm(ElementBase):
namespace = 'google:mobile:data'
name = 'gcm'
plugin_attrib = 'gcm'
interfaces = set('gcm')
sub_interfaces = interfaces
class GcmMessage(ElementBase):
namespace = ''
name = 'message'
interfaces = set('gcm')
sub_interfaces = interfaces
subitem = (Gcm,)
register_stanza_plugin(GcmMessage, Gcm)
然后像这样发送消息:
def send_gcm_message(self, message):
msg = GcmMessage()
msg['gcm'].xml.text = xml.sax.saxutils.escape(json.dumps(message, ensure_ascii=False))
self.send(msg)
【讨论】:
【参考方案2】:您收到的Missing Payload
错误是因为您没有将任何参数作为键和值格式传递给被识别为有效负载。
首先,您必须定义一个函数,您将在其中传递有效负载,然后在 GCm 服务器响应后将其转换回纯文本。
这是一个例子:
def plaintext_request(self, registration_id, data=None, collapse_key=None,
delay_while_idle=False, time_to_live=None, retries=5, dry_run=False):
if not registration_id:
raise GCMMissingRegistrationException("Missing registration_id")
payload = self.construct_payload(
registration_id, data, collapse_key,
delay_while_idle, time_to_live, False, dry_run
)
如果您的代码中需要在一段时间后 ping 服务器,您可以使用指数回退机制。
详细代码实现请阅读以下document。
【讨论】:
这算不算有效载荷: 'to': recipient, 'message_id': random_id(), 'data': 'hello': 'world'
还是我的格式有问题?以上是关于GCM 无效的 JSON 缺少有效负载的主要内容,如果未能解决你的问题,请参考以下文章
AFNetworking 序列化正斜杠使 JSON 有效负载无效
向 FCM API 发送请求时收到无效的 JSON 有效负载
Firebase 云消息传递 - 发布消息说 JSON 有效负载无效