我正在使用PushBullet从Raspberry Pi发送消息。我应该在LXTerminal中输入什么作为主机密码?

时间:2016-06-21 10:49:26

标签: raspberry-pi iot pushbullet

我正尝试从following resource向Chrome PC中的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:

1 个答案:

答案 0 :(得分: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脚本,并按照你提供的resource中所述的提升权限运行它。