0

我正在尝试从以下资源向 Chrome PC 中的 Pushbullet 从 Raspberry Pi 发送推送通知。

键入以下命令后,当它要求输入主机密码时我应该输入什么?

    sudo apt-get install curl
    curl -u [type your access code here] https://api.pushbullet.com/v2/pushes/ -d type=note -d title="Raspberry Pi" body="Hello World!"
    Enter password for host:
4

1 回答 1

0

尝试使用提升的权限启动命令

sudo curl -u [type your access code here] https://api.pushbullet.com/v2/pushes/ -d type=note -d title="Raspberry Pi" body="Hello World!"`

或者,您应该将其写入 .sh 文件,即 shell 脚本,并按照您提供的资源中所述以提升的权限运行它。

于 2016-06-22T06:19:01.767 回答