解析错误:语法错误,意外标记“:”

Posted

技术标签:

【中文标题】解析错误:语法错误,意外标记“:”【英文标题】:Parse error: syntax error, unexpected token ":" 【发布时间】:2021-11-03 22:14:32 【问题描述】:

我正在尝试迁移使用 APNs 发送和接收消息的现有 API,以与新的 APNs Provider API 兼容。

在 Apple 停止支持旧的二进制协议之前,以下脚本用于向我的测试设备发送测试通知。

//simplepush.php

<?php

// Put your device token here (without spaces):
$deviceToken = 'EXAMPLETOKEN';
// Put your private key's passphrase here:
$passphrase = 'pushchat';
// Put your alert message here:
$message = 'Hello!';
////////////////////////////////////////////////////////////////////////////////
$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://api.sandbox.push.apple.com:443', $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) . 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;
// Close the connection to the server
fclose($fp);

Sending Notification Requests to APNs 声明 :method:path 标头字段是连接 APN 所必需的。

我已将链接中的代码复制到原始测试脚本。

<?php
HEADERS
- END_STREAM
+ END_HEADERS
:method = POST
:scheme = https
:path = /3/device/EXAMPLETOKEN
host = api.sandbox.push.apple.com
apns-id = eabeae54-14a8-11e5-b60b-1697f925ec7b
apns-push-type = alert
apns-expiration = 0
apns-priority = 10
DATA
+ END_STREAM
 "aps" :  "alert" : "Hello"  
// Put your device token here (without spaces):
$deviceToken = 'EXAMPLETOKEN';          // Put your private key's passphrase here:
$passphrase = 'pushchat';
// Put your alert message here:
$message = 'Hello!';
///////////////////////////////////////////////////////////////////.   /////////////
$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://api.sandbox.push.apple.com:443', $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) . 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;
// Close the connection to the server
fclose($fp);

当我尝试运行脚本时,终端输出是:

PHP Parse error: syntax error, unexpected token ":" in /Users/Desktop/simple push folder/simplepush.php on line 6

将新要求的标头字段添加到此脚本的正确方法是什么?

注意:我已使用以下 Apple documentation 向我的测试建议发送测试通知。

【问题讨论】:

您不能只是将它们显示的示例标头请求复制并粘贴到 PHP 中。 感谢您的回复。我仍在寻找一些我可以看看的开源代码。你知道我在哪里可以找到它吗? 删除第 3 到 17 行。 老实说,我不确定 Apple 的 APN,但 Google 了一下,它可能会对您有所帮助:michael.wright.uk/sending-ios-push-notifications-with-php 出于安全原因,问题永远不应包含真实令牌。您可以使用 ExampleToken 之类的文本来代替这个。 【参考方案1】:

PHP 说你的文件有语法错误。我认为这与请求标头无关。

【讨论】:

感谢您的回复。当我删除标头时,终端说消息已成功传递,即使没有收到消息。我也不确定它们一开始是否正确。同样,如果 Apple 有开源示例或一些教程,那就太好了。 您以前见过这样使用的请求标头吗?我对此完全陌生。

以上是关于解析错误:语法错误,意外标记“:”的主要内容,如果未能解决你的问题,请参考以下文章

解析错误:语法错误,文件意外结束,期待'`' [重复]

解析错误:语法错误,意外'' [关闭]

解析错误:语法错误,意外'[',期待')' [重复]

为啥这个解析错误在这里解析错误:语法错误,意外标识符“编辑”,期待“,”或“;”? [复制]

解析错误:意外的令牌,预期的“,”和语法错误:意外的令牌'['[重复]

JSON解析错误语法错误意外结束输入