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

PICO w with pushbullet

Is there a way to use pushbullet with a pico w using micropython? I am using the thonny IDE. This is my code as of right now. I keep getting a osError:-2 when it is ran. body = "Sensor Data" title = "Fall Detected" data_sent =…
Killerbee
  • 1
  • 2
0
votes
0 answers

get pushes data from pushbullet

I am trying to read the data pushed to me (after receiving the tickle notification) when using the curl --header Access-Token: https://api.pushbullet.com/v2/pushes?modified_after=1639898238.125584 I get the string of data and I can extract…
Amos Rohe
  • 37
  • 4
0
votes
1 answer

pushbullet line break problem with VBA EXCEL

i made a userform in VBA Excel to send SMS via Pushbullet to my clients it works perfectly when i send a single line message , but when i try to send multiple line message it doesn't work,i searched in stackoverflow and google with no answer , i…
0
votes
1 answer

I cannot connect to pushbullet from ESP8266

I have followed several instructions to connect from ESP8266 to Pushbullet Here is a code snippet #include #include const char* ssid = "......."; const char* password = "......."; const char* host =…
HvdW
  • 1
  • 1
  • 4
0
votes
1 answer

Problem with body while sending a pushbullet notification

I have a weird issue while sending a PushBullet notification. I can send the notification if the richtextbox contains text like: this is text It doesn't send anything if richtextbox is: this is text or: this is text I've tried using regex…
user14431754
0
votes
0 answers

Pushbullet importing OS error, circular import error

I am having trouble when using Pushbullet in my VS-Code project, it's having a problem with importing pushbullet. I am using Python 3.8.2 on Windows 10, Python 2.7 is also installed, there are two types of error and I have no clue at all But when I…
0
votes
1 answer

Pushbullet, push request successfully sent but no email arrives in inbox?

My code sends notifications but doesn't send emails. I receive the notifications in the Pushbullet extension in Google Chrome, but not in my email inbox. No errors (e.g. 404, 405 etc.) are returned. I'm using Python3. This is the data sent (email…
0
votes
1 answer

PushBullet Nodemcu

i working on security alarm system and need to push notify to my phon and write code according pushbullet api documents but my code not work : i use both "https://api.pushbullet.com" and "api.pushbullet.com" for pushbullet_server and use…
mohammad
  • 1
  • 3
0
votes
0 answers

Pushbullet API SSLerror with python requests

I am facing requests.exceptions.SSLError when trying out pushbullet API with python requests module. >>> headers {'Access-Token': ''} >>> url 'https://api.pushbullet.com/v2/users/me' >>> r = requests.get(url, headers=headers,…
MohitC
  • 4,541
  • 2
  • 34
  • 55
0
votes
1 answer

pushbullet API takes 30 minutes to deliver note

Working with Python 2.7 on Raspberry pi, I created a Pushbullet account and installed it on my iPhone 7 (iOS 12.4). In this instance, I'm using a github library from https://github.com/rbrcsk/pushbullet.py but I've noticed this lag using other…
buzzard51
  • 1,372
  • 2
  • 23
  • 40
0
votes
1 answer

Parsing last message from Pushbullet using Selenium

I'm trying to parse the last received message from Pushbullet. I'm currently doing it using Clicks, which means that I do every single clicks, sendkeys and all the rest needed actions automatically. In other words it is just a simulation of the…
Shako
  • 31
  • 9
0
votes
1 answer

How to use Pushbullet API on Mikrotik using fetch tool?

I need Mikrotik to send me a notification via Pushbullet if there is a certain event using fetch I find some code to work with it, but it sends me an error, I read on the web site about the error code, it says my token was invalid, I tried to create…
idnawsi
  • 23
  • 7
0
votes
1 answer

Javascript101 help | API | stuck

Per Pushbullet API doc I need: Header as: 'Access-Token: o.I'veLearnedNotToPost' 'Content-Type": "application/json' Url is https://api.pushbullet.com/v2/users/me Problem with my code (don't laugh too hard) is that it only returns "Retrieving…
0
votes
0 answers

extract caller phone number over pushbullet API

is there a possibility to extract just the caller phone number from the notification pop up generated by Pushbullet (in Windows)? I want to develop a C# program that should be executed directly after someone calls and the user should be able to take…
Alex
  • 1
0
votes
1 answer

Filter Pushes by Type

I'm working on building a bash script that will listen for pushes of the type link which will then extract just the URL and write it to a local file. The idea is to be able to gather links I find and save them for automated processing…
N B
  • 13
  • 3