0

我正在关注本教程https://developers.google.com/web/fundamentals/getting-started/codelabs/push-notifications/#send_a_request_from_the_command_line_for_fcm_to_push_a_message

当我这样做时

curl --header "Authorization: key=AIzaSyCQHb2t8c3N255bH_CVmGych5QcNntFxYg" --header "Content-Type: application/json" https://android.googleapis.com/gcm/send -d "{\"registration_ids\":[\"APA91bE4RJ7_9m2eJ_zlg1F90bLjVX8ctVpCBN24ElAXF--4wS_nnxg4LzkbJWeTe-peMN_StmOaQTEoGeCCNZE5Mssux3T-KbfGRVmRWzeQZM8opfUyv7FVjI9iEfETHG3O7i1qkIb-\"]}"

我得到 Uncaught SyntaxError: Unexpected identifier

但是我按照教程中的方式做了所有事情。我把我的 api 密钥放在那里,我的发件人 ID 也在 manifest.json 中,我也把订阅端点 url 放在那里。这是终点endpoint: https://android.googleapis.com/gcm/send/cl72SS1zE50:APA91bE4RJ7_9m2eJ_zlg1F…peMN_StmOaQTEoGeCCNZE5Mssux3T-KbfGRVmRWzeQZM8opfUyv7FVjI9iEfETHG3O7i1qkIb-

那么为什么我会收到这个错误,它是什么标识符?

4

1 回答 1

2

curl --header etc etc是一个shell命令。您链接到的教程说从您的终端,运行下面的 cURL 命令

Uncaught SyntaxError: Unexpected identifier is JavaScript 错误消息。您似乎正试图在 JavaScript 程序中输入该代码(可能通过将其粘贴到浏览器的开发人员工具控制台或 Node.JS REPL 中)。

您需要在不是 JS 程序的 shell(例如 Bash 或 Windows Power Shell)上运行命令。

于 2016-10-12T09:18:34.600 回答