推送iOs通知西班牙语字符

时间:2014-02-25 18:47:00

标签: php ios push-notification apple-push-notifications

我对西班牙语字符'ñ'有疑问并推送iOs通知。 我使用PHP脚本发送通知。在发送之前,我将消息编码为utf8并且完成得很好。问题是,当我在有效载荷中发送带有'ñ'的通知时,我没有收到它,但是使用其他特殊字符'á','é',...,我收到它没有任何问题。< / p>

$text = "España";
$json = '{"data":{"text":"' . $text . '"}}';
$passphrase = 'passphase';  
$message = utf8_encode($json);
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
      'ssl://gateway.sandbox.push.apple.com:2195', $err,
      $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
    exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
    'alert' => $message,
    'sound' => 'default'
    );
// Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken[$i]) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
   echo 'Message not delivered' . PHP_EOL;
else
   echo 'Message successfully delivered' . PHP_EOL;

编辑:

正确发送特殊字符'ñ',我的问题是我发送了比$ text更多的数据(编写了$ text变量来更好地解释代码)。在iOs推送通知中有一个有效负载大小限制,并且我的消息超出了它,因此设备没有收到它。它只发生在我的应用程序中的一个文本,因为它是最大的,并且它是唯一一个带有'ñ'的文本。 因此,如果您没有收到某些消息,请检查字符数。

1 个答案:

答案 0 :(得分:1)

尝试使用实体。

$text="Espa&ntilde;a"
...

Saludos desde Suiza