We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JPushAsync.js的getReportStatusMessage函数中: var json = { "msg_id": msgId > Number.MAX_SAFE_INTEGER ? String(msgId) : msgId, "registration_ids": registrationIds }; 但是现在很多msgId大于 Number.MAX_SAFE_INTEGER,发送的是字符串。服务端验证又通不过,返回错误: {"error":{"code":3002,"message":"Invalid parameter msg_id."}}
var json = { "msg_id": msgId > Number.MAX_SAFE_INTEGER ? String(msgId) : msgId, "registration_ids": registrationIds };
{"error":{"code":3002,"message":"Invalid parameter
."}}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
JPushAsync.js的getReportStatusMessage函数中:
var json = { "msg_id": msgId > Number.MAX_SAFE_INTEGER ? String(msgId) : msgId, "registration_ids": registrationIds };
但是现在很多msgId大于 Number.MAX_SAFE_INTEGER,发送的是字符串。服务端验证又通不过,返回错误:
{"error":{"code":3002,"message":"Invalid parameter
msg_id."}}
The text was updated successfully, but these errors were encountered: