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
0
votes
1 answer

Pushing a list with PushBullet API returns error 400

I'm trying to send a new list with the PushBullet API using an http request. I use following json data to send to push: { "items":[ { "checked":false, "text":"a" },{ "checked":true, …
0
votes
1 answer

Pushbullet Oauth using Bash and curl

I recently wrote a Pushbullet Linux command line client in Bash. I want to allow users to grant access to their Pushbullet accounts via Oauth, but I'm having some trouble. I just did Oauth for Google Drive API the other day. It was fairly…
Sophie
  • 304
  • 10
  • 12
0
votes
1 answer

How do I encrypt a message to send via Pushbullet using the new e2e encryption feature

Support for end-to-end encryption is awesome! I'd like to take advantage of the feature in my own Python app using the Pushbullet API. Is this possible? If, say, I wanted to send a simple note, could I do something like: import json import…
Mark
  • 13
  • 2
0
votes
0 answers

Force pushbullet notifications not to group

When I send multiple pushes to a device, the notifications in the notification tray get grouped (at least that's what happens on my Android device). When I then remotely dismiss one of the pushes through the API because it's no longer relevant, the…
Dan Kadera
  • 109
  • 1
  • 2
  • 8
0
votes
2 answers

Sending SMS using the Pushbullet API via Bash scripting (curl)

I'm working on a cli for the Pushbullet HTTP API using Bash scripting. Sending pushes (notes and links), as well as creating, deleting, and modifying contacts & devices are all straight forward using curl and Bash. However, sending SMS and files are…
Sophie
  • 304
  • 10
  • 12
0
votes
1 answer

Pushbullet syntax structure

I've recently discovered pushbullet and use it in Node-Red on my raspperry Pi to send temperature details from an arduino on demand to my phone. I'm using the pushbullet app but I would like to create my own android app with app inventor but just DO…
0
votes
1 answer

Push a link with Pushbullet and have it automatically opened in web browser

I'm trying to use Pushbullet to send links from Android app which should automatically open in web browser. Their API states that you have to use "type": "link" when you're going to send a link. I've tried this, but the link isn't automatically…
tomrozb
  • 25,773
  • 31
  • 101
  • 122
0
votes
1 answer

400 (Bad Request) error when using Pushbullet Ephemerals

I'm working on a simple command-line Pushbullet Python project, and have the following code: from settings import * import urllib import urllib2 def pushSms(number, message): url = 'https://api.pushbullet.com/v2/ephemerals' values = { …
j6m8
  • 2,261
  • 2
  • 26
  • 34
0
votes
1 answer

Pushbullet: Blocked because too many DB read requests

Im working on an AutoIt application, and today I found out Pushbullet blocked me from reading from their database because I performed too many database reads, this is the actual error message: "You have been blocked for performing too many database…
RxBlacky
  • 1
  • 1
0
votes
2 answers

Connecting to Pushbullet's Secure Websocket on Android

The awesome service that is Pushbullet have a websocket stream that you can subscribe to and then listen for pushes to your device, which is exactly what I want. I want my App to be able to connect to the messages stream and do stuff based on what…
seaders
  • 3,878
  • 3
  • 40
  • 64
0
votes
1 answer

Does Pushbullet's MessagingExtension Service need manual stopping?

This is a simple question. I am adding Pushbullet support in my app by adding a Service that extends Pushbullet's MessagingExtension class. Now, do I manually need to close the service inside its methods (onMessageReceived() and…
Saket
  • 2,945
  • 1
  • 29
  • 31
0
votes
1 answer

What's the best way to automatically push a link to my phone?

I would to either write a script or utilize Chrome extensions to automatically push links to my Android. I have Pushbullet installed which is great, but I have to manually push the links over using a keyboard shortcut. How might I go about…
5Y3WS
  • 49
  • 8
0
votes
1 answer

Pushbullet API via http in Android

How can I receive Pushbullet notes/images/profile details via API-Key on Android? My main problem is the SSL security in that point. (BTW: I'm pretty much a beginner in Android and only know the basics.) The auth looks like this:…
0
votes
1 answer

Send pushbullet notification from "My Service"

Given that pushbullet only accepts signups via Google or Facebook accounts, what is the recommended way of sending alerts from (for example) "My site Service "? I tried connecting an additional address to my account an this also presented me with a…
0
votes
0 answers

Pushbullet notification on arch linux - Failed to decode JSON body

I am trying to get a script working from here : https://gist.github.com/vor0nwe/e33ace72c850f93bc979/ #!/bin/bash curl -u YOUR_ACCESS_TOKEN: \ -X POST https://api.pushbullet.com/v2/pushes \ --header 'Content-Type: application/json' \ --data-binary…