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

Pushbullet PHP Api Lists

I'm using Pushbullet PHP API (link below) and want to push a list. Unfortunately I hear that pushing lists (and addresses) is deprecated. https://github.com/ivkos/Pushbullet-for-PHP Now I want to push my list as a string with note function, with…
user4554100
0
votes
1 answer

Pushbullet + WebClient = download only body content from note notification

This is my first attempt to use the Pushbullet API to read the latest notification sent. I have successfully authenticated my WebClient and upload/download its last push, but I want to download only the body (note's message) from the push of note…
0
votes
1 answer

Pushbullet curl send to channel how?

How can I send to channel? This is the code I use for notes: curl -k https://api.pushbullet.com/v2/pushes -X POST -u : --header "Content-Type: application/json" --data-binary "{\"type\": \"note\", \"title\":\"Note Title\", \"body\": \"Note…
user3785784
0
votes
1 answer

JavaFX WebEngine and Pushbullet authentication

I am working on a small JavaFX app that aims to open the Pushbullet authentication Webpage in order to get an OAuth access token. Writing it in JavaFX was really simple. However, when I fill the form and validate it using Google account,…
Laurent
  • 14,122
  • 13
  • 57
  • 89
0
votes
1 answer

pushbullet and OAuth

I have a simple question about using Pushbullet's OAuth API and was not able to find the answer on PUshbullet's site. Specifically, if I register my client app to use Pushbullet's OAuth authentication and I send my users to give their approval to…
JLP188
  • 21
  • 2
0
votes
1 answer

Codepage on Pushbullet API (REST)

Which codepage does Pushbullet run on the REST API? I have difficulty with Nordic characters (æøåÆØÅ), I have tried several different ways to format the JSON, but still the characters is wierd. I am calling the API via Powershell "Invoke-RestMethod"…
0
votes
1 answer

Process SMS when notified via websocket

So I managed to connect to the websocket with my API token and I do get notifications. For incoming calls, I do get a push with all info like…
0
votes
2 answers

401 Status Returned on Access Token Errors

While a 401 Unauthorized may seem spiffy for these ("Access token is missing or invalid") it can throw many a client HTTP stack into prompting the user for credentials, something that won't succeed anyway since normal HTTP authentication mechanisms…
Bob77
  • 13,167
  • 1
  • 29
  • 37
0
votes
1 answer

Upload: 500 Internal Server Error

To anyone stumbling upon this: this is in regard to the Pushbullet API, as tagged. Trying this for the first time. I seem to have a good response to my Upload Request, and I'm pretty sure I have the correct Upload URL for this, but the Upload stage…
Bob77
  • 13,167
  • 1
  • 29
  • 37
0
votes
2 answers

Pushbullet API - Is it possible to update a contact's email address?

You can create a contact and specify email, but the only option for updating a contact seems to be name. Is it possible to update a contact's email? This would be preferable to making the user delete the contact and then add it again it with a new…
Sophie
  • 304
  • 10
  • 12
0
votes
2 answers

Location of 'client_iden' parameter for Pushbullet client

I'm trying to use the 'client_iden' target parameter to send pushes to multiple users at once. I've successfully created the client, but I'm unable to find the 'client_iden' parameter on the client creation page. Does anyone know where this…
BobbyD
  • 11
  • 1
0
votes
1 answer

Pushbullet push with multiple options

I would like to control my home automation project with my Android phone but I don't know if it's possible the way I am thinking. How exactly I would like to use it: An Arduino Nano detects that one of the lights have been left on, but there is no…
Avamander
  • 497
  • 16
  • 31
0
votes
1 answer

Pushbullet: No notifications in official Chrome extension when pushing via API

The official Chrome extension isn't behaving as I'd expect (and is not what how it behaved before). I've uninstalled and reinstalled it from Chrome store before doing this. Using the randomchars pushbullet python client…
0
votes
1 answer

Add contact to pushbullet with the api

I'm trying to add a contact to my contacts on pushbullet using the api. I send following json data with my POST request to https://api.pushbullet.com/v2/contacts { "name": "some name", "email": "test@example.com" } According to the documentation…
0
votes
1 answer

InvalidTag error decrypting pushbullet notification with python-cryptography

I am trying to implement End-to-end encryption support for pushbullet ephemeral messages in python3. I'm using python-cryptography, but I get an InvalidTag-Exception while decrypting. I have double checked the key, iv and tag, but I can't figure out…
Benjamin Maurer
  • 3,602
  • 5
  • 28
  • 49