我正在使用解析服务器将推送通知发送到Android和IOS应用。我正在使用parse/php-sdk。
当我发送少量内容时,Android和IOS设备都收到推送通知
但是当我发送长内容时,该通知是在Android中收到的,而在IOS中则没有收到。
下面是我发送推送通知的代码
$queryIOS = ParseInstallation::query();
$queryIOS->containedIn("installationId", $installationIds);
$response = ParsePush::send(array(
"where" => $queryIOS,
"data" => $data
), true);
有人可以帮我吗?