我创建了一个使用 Pushbullet API 的小应用程序。它是用 PhP 编写的,并使用 cURL 来处理不同的请求。
首先,我使用 oauth2 来接收访问令牌。然后是 /v2/pushes/ 向注册的帐户发送推送。
消息在 Pusbullet 帐户上收到,但智能手机上没有任何显示。没有通知。
我希望有一个人可以帮助我。谢谢。
我发送推送的函数:
function send_push($token){
$data = array(
'type' => 'note',
'title' => 'Alert',
'body' => 'My body :)!'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.pushbullet.com/v2/pushes');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Authorization: Bearer '.$token
));
$data = curl_exec($ch);
curl_close($ch);
}