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

103 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

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
  • 543
  • 7
  • 23
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
  • 10
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
  • 75
  • 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,264
  • 15
  • 62
  • 128
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

Reading replies in Pushbullet using python

Can we read PushBullet's user's reply and continue the program further on the basis of that reply using Python? from pushbullet import * pb =PushBullet() pb.push_note('Hi',"Shall I continue?") #notification sent If I write "Yes" as reply to…
Zayd
  • 13
  • 4
1
vote
0 answers

How to implement a notificator with pushbullet api?

as in title I want to create a c++ programm and I want to include a notification system. I use pushbullet for all my devices so I decided to use the api. But the only manual I found is for html and php. I just want a simple way of implementing it.…
Marvin S.
  • 11
  • 1
1
vote
0 answers

Flask - Gevent - Pushbullet - Twilio - This operation would block forever

so I have the following app that I'm working on https://github.com/SimplySynced/simplyfishy/tree/master and i'm running into this error when I trigger my float switch and try to send a message via twilio and pushbullet. File…
DexDeadly
  • 61
  • 6
1
vote
1 answer

Request cURL with ESP8266

I am pretty new to programming (the ESP8266). Right now I am putting code-pieces from different blogs together in order to receive(!) pushes (messages) from Pushbullet. Sending already works great thanks to: POST request on arduino with ESP8266…
Tobi
  • 13
  • 1
  • 1
  • 3
1
vote
2 answers

Access Pushbullet API to delete pushes using R

I am using the RPushbullet package to send push notifications to several devices (smartphones) from R. This works perfectly fine. Now: Before every new push message I want to delete the previous push. I want to do this by accessing Pushsbullet's…
thankyouSO
  • 98
  • 1
  • 8
1
vote
1 answer

Where to find javax.websocket .jars for use in project

I've been attempting to use the Java library, jPushbullet2. One of its dependencies is "javax.websocket". I've searched through the site that the websocket API is located and haven't been able to find a jar to download and use. Does such a thing…
Aaron
  • 381
  • 1
  • 6
  • 16
1
2 3 4 5 6 7