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
1
vote
0 answers

How Pushbullet sends all iOS Notification to Mac

I was checking different apps that have Mac & iOS communication. I came across cool apps PushBullet and Notifyr. The Most amazing thing I found is showing Push notifications of iOS to their apps in Mac. I tried to search what can be used to achieve…
Mrug
  • 4,963
  • 2
  • 31
  • 53
1
vote
4 answers

Send email to pushbullet?

The website "PushBullet.com" is webwashed(filtered) by our proxy, at work. But I really need to send some notifications to my devices. Is there a way to send them thru the good old email protocol ?
manatlan
  • 1,091
  • 1
  • 9
  • 18
1
vote
3 answers

send POST request in PHP to pushbullet API 401 error

I'm trying to send simple push notifications with pushbullet just through using the email and sending those to the linked account to avoid needing account data. (see reference here: https://docs.pushbullet.com/#pushes) Therefore I'm using a non…
Pinetrax
  • 35
  • 1
  • 6
1
vote
1 answer

Properly watch websites for updates

I wrote a script that I'm using to push updates to Pushbullet channels whenever a new Nexus factory image is released. A separate channel exists for each of the first 11 devices on that page, and I'm using a rather convoluted script to watch for…
vaindil
  • 7,536
  • 21
  • 68
  • 127
1
vote
1 answer

Python script fallback to second server

I have a Python script that manages Pushbullet channels for Nexus Android device factory images. It runs on my VPS (cron job that runs every 10 minutes), but my provider has warned that there may be intermittent downtime over the next several days.…
vaindil
  • 7,536
  • 21
  • 68
  • 127
1
vote
1 answer

How to query the pushes for a device?

I want to use Pushbullet to send pushes from my phone to an application (which will then display it). This application is a service written in Python. The basic reception of the realtime stream works: import websocket ws =…
WoJ
  • 27,165
  • 48
  • 180
  • 345
1
vote
4 answers

POST request with Arduino Yun

The following POST works via cURL from the terminal: curl --header 'Authorization: Bearer ' --header 'Content-Type: application/json' -X POST https://api.pushbullet.com/v2/pushes --data-binary '{"type": "note", "title": "Note…
vikzilla
  • 3,998
  • 6
  • 36
  • 57
1
vote
1 answer

Pushbullet pycurl with linefeed in message

I'm trying to send pushbullet notifications with linefeed / newlines but it doesnt work. when i add %0d or \n it doesnt do anything. in bash i just add -d to my curl command and it works. is there a similar solution for pycurl ? Thanks in advance…
Gutz-Pilz
  • 319
  • 6
  • 16
1
vote
1 answer

lua - how to authenticate to a HTTPS server?

How would one authenticate and hit a HTTPS URL from LUA? In particular to get the resultant response back from the server? Background: Basically want to use the https://docs.pushbullet.com/http/ API. I can see how to use it in curl, however I…
Greg
  • 34,042
  • 79
  • 253
  • 454
0
votes
0 answers

ValueError: invalid syntax for integer with base 10 while using adafruit_requests in Circuit Python

I am trying to build a simple notification application to detect when my letter box is opened and send a notification via pushbullet using Raspberry Pico W. This is the application: import os import adafruit_requests import board import…
Pitto
  • 8,229
  • 3
  • 42
  • 51
0
votes
0 answers

Issues with Pushbullet Pro Account

I am facing issues with my pushbullet account on desktop. Im on a Pro subscription but its not showing on my account and all my devices are not showing. Not able to send out any batch SMS as well via excel macro. Once logged in using gmail, my icon…
0
votes
0 answers

Send PUSHBULLET Notifications from a specific app to airtable via make.com

I am looking to set up a scenario via make.com to send specific notifications from an app on my samsung phone to my google sheet and/or airtable with a make.com flow. Would anyone know how to set up the http requests so I can collect specific…
0
votes
1 answer

Pushullet API: error 500 when sending multiple messages

So I've been trying to automate sending sms for a company that I'm working for using the pushbullet API. When I send multiple messages I get this error on the browser console: POST https://api.pushbullet.com/v2/texts 500 When i send few messages at…
0
votes
0 answers

Retrieve list of pushbullet messages sent through the "mirroring" option

Im using the following python code to read pushbullet pushes sent through the mirroring option. async with session.ws_connect("wss://stream.pushbullet.com/websocket/" + PB_API_key) as ws: while True: output = await ws.receive() …
Ken
  • 1
0
votes
0 answers

How can I receive SMS messages with pushbullet?

I can't figure out how to receive SMS messages from my phone to my computer using pushbullet. Every time I try to receive pushes I only get the pushes from my laptop and not my phone. I want receive input from my phone then output my sending a text…