我创建了一个使用Pushbullet API的小应用程序。 它在PhP中是写的,并使用cURL来处理不同的请求。
首先,我使用oauth2来接收访问令牌。 然后是/ v2 /推/发送推送到注册帐户。
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);
}