GCM 显示错误请求实体太大错误 413
GCM showing error Request Entity Too Large Error 413
我有一个 table 超过 50000 个 googleID。我尝试使用 GCM 和 PHP 推送通知,但它显示错误 "Request Entity Too Large Error 413"
。如何解决?谢谢!
413 是标准的 HTTP 代码。看看Wikipedia
它说:
413 Request Entity Too Large
The request is larger than the server is willing or able to process.
这就是它的意思,你提出了一个非常大的要求,可能是一个很长的文本或者json,或者什么的,减少它的大小...
根据 GCM doc 限制是这样的(我认为你使用 HTTP):
Upstream/Downstream messages
HTTP: Downstream only, cloud-to-device up to 4KB of data.
我有一个 table 超过 50000 个 googleID。我尝试使用 GCM 和 PHP 推送通知,但它显示错误 "Request Entity Too Large Error 413"
。如何解决?谢谢!
413 是标准的 HTTP 代码。看看Wikipedia 它说:
413 Request Entity Too Large
The request is larger than the server is willing or able to process.
这就是它的意思,你提出了一个非常大的要求,可能是一个很长的文本或者json,或者什么的,减少它的大小...
根据 GCM doc 限制是这样的(我认为你使用 HTTP):
Upstream/Downstream messages
HTTP: Downstream only, cloud-to-device up to 4KB of data.