Questions tagged [pushbullet]

Pushbullet is a group of applications and an API for sharing files and notifications between devices.

Pushbullet automatically shows you all of your phone's notifications right on your computer. This means you can see who's calling or read and reply to text messages even if your phone is on silent or in another room.

Pushbullet also makes it easy to send pictures, files, links, and more to your devices and even to friends.

This tag should only be used for questions about using the Pushbullet API, as questions about general use of the program are off-topic for Stack Overflow.

Relevant Links:

Pushbullet homepage

111 questions
3
votes
0 answers

Pushbullet no notification on smartphone using API

I created a little app which uses Pushbullet's API. It is writtent in PhP and uses cURL to proceed the different requests. At first, I use oauth2 to recieve an access token. Then it is /v2/pushes/ to send a push to the registred account. The message…
Thunder
  • 31
  • 3
2
votes
0 answers

Sending pushbullet meassages from my raspberry pi not possible: Error message "SSL: CERTIFICATE VERIFY FAILED" received

Since June 26th 2023 I cannot send meassages from my raspberry pi via pushbullet. I have not changed anything on my device. The following error message is received: SSL: CERTIFICATE VERIFY FAILED. sudo update-ca-certificates did not work.
2
votes
0 answers

Replying to remoteinput

I've created a simple application which listens to notification events from other applications. I received StatusBarNotification object and got WearableExtender out of it. Then I got the remoteInputs that the extender was having. Then used this code…
2
votes
1 answer

Sikuli Producing AttributeError with Python Modules (PushBullet)

I'm rather new at coding, I'm trying to use the PushBullet API (from Azelphur) in my Sikuli code. I used pip to install PushBullet and its dependencies. The following code functions perfectly in the Atom editor, but hits errors in Sikuli: from…
2
votes
1 answer

Receiving android notifications on the terminal

I want to get all the notifications from my android phone on the linux terminal when I run certain commands. For example, if I have a WhatsApp and a email notification then I should receive this data on the terminal. If there is no notification then…
as2d3
  • 802
  • 2
  • 10
  • 27
2
votes
1 answer

Pushbullet API thread_id to conversation_iden for SMS?

I'm writing a swift app for the Pushbullet API for SMS notifications and replies on MacOS. To get new SMS messages, I'm monitoring the WebSocket wss://stream.pushbullet.com/websocket/ for sms_changed events, which works nicely. I get the contact…
user2521989
  • 93
  • 1
  • 6
2
votes
1 answer

How can I implement curl (Pushbullet API) into my program?

How can I implement the curl commands given on the official Pushbullet API site into my C# program? Example: curl --header 'Access-Token: ' \ https://api.pushbullet.com/v2/users/me Can I somehow directly write that code…
Mr_Grennn7
  • 109
  • 1
  • 12
2
votes
0 answers

create fingerprint device and push token pushbullet

As Pushbullet API says here https://docs.pushbullet.com/#create-device String fingerprint for the device, used by apps to avoid duplicate devices. Value is platform-specific. Example: "nLN19IRNzS5xidPF+X8mKGNRpQo2X6XBgyO30FL6OiQ=" fingerprint…
2
votes
2 answers

How can I group pushbullet notifications

I am sending push notifications to my Android phone. I want these notifications grouped so my notification list does not get flooded. According to the documentation messages from the same 'source' get grouped but on my phone the messages always show…
Rene
  • 85
  • 1
  • 6
2
votes
1 answer

Receive notifications through PushBullet API

At the moment I'm playing a bit with the PushBullet API. I can send notifications, create new devices and so on but the only thing I can't is receive messages. I have created a web application and have created a new device over the pushbullet API…
Cilenco
  • 6,951
  • 17
  • 72
  • 152
2
votes
2 answers

Pushbullet API from cURL - invalid request

I'm working on an app using Pushbullet's API, but I'm running into odd errors when running through the sample code at https://docs.pushbullet.com/v2/pushes/. I'm executing the following cURL command (in Windows): curl -k -u : -X POST…
user2302078
  • 142
  • 1
  • 11
1
vote
0 answers

SMS Profile Icons Missing in Pushbullet

For the past several months (maybe even a year, I had hoped an update would fix it), the custom user profile pictures that are displayed next to each person in the SMS section of PushBullet have been missing. On the PC app, this causes the pop-out…
WebGuru
  • 86
  • 1
  • 6
1
vote
1 answer

Pushbullet API sends notififications twice

I am sending push notes from a PHP script. They are received twice on all my devices, so this is not a question of a wrong setup in one of my devices. OTOH, if I send a push notice from one of my devices to another, it appears only once. I cannot…
Volker Piasta
  • 87
  • 1
  • 11
1
vote
1 answer

Accessing an uploaded file's url

My application for sends and receives data from/to my phone - basically a 2-way communication through the pushbullet API. I am trying to take a file from my phone and when it's uploaded do something with it, (play it for example if it's an…
bob bob
  • 15
  • 4
1
vote
1 answer

Can't push a notification in a pushbullet channel using the pushbullet API

I've tried something like this: from pushbullet import PushBullet API_KEY = myAPIKey pb = PushBullet(myAPIKey) push = pb.push_note('Title', 'Desc', channel="myTag") I've already created a channel (with the relative tag). This code produces the…
geomikeo
  • 9
  • 2
1
2 3 4 5 6 7 8