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

Expunge unwanted pushbullet pushes

I use the python pushbullet.py library to access my pushbullet pushes. After some months of pushing messages back and forth, I now have over 5000 pushes being retrieved when I do pb.get_pushes(). This is taking quite a long time to retrieve since it…
0
votes
2 answers

Python and pushbullet api: send a file

I'm trying to send a file using Pushbullet following their API docs. This is my function: def push_file(AccessToken, file_name): f = open(file_name, 'rb') file_type = mimetypes.guess_type(file_name)[0] print("Uploading…
andrew
  • 3,879
  • 4
  • 25
  • 43
0
votes
1 answer

Python IndexError : list index out of range PushBullet

I have a problem, I need help. I want to use PushBullet in python but I got error. Here my code: from pushbullet import PushBullet from pushbullet import device apik="myapikey" pb=PushBullet(apik) de=pb.devices[0] success, push =…
Berkay E.
  • 35
  • 5
-1
votes
1 answer

Pushbullet API Notification

I Would like to create a program in C# with Pushbullet API. Now I receive my notifications from my phone but I would like to exploit data received. How to analyse and extract data like this: { "push": { "application_name": "Pushbullet", …
C. MARTIN
  • 43
  • 12
-1
votes
1 answer

pushbullet api decoding (v2/push)

I want to use the pushbullet api (v2/push) for pushing messages, but if I include '%' character inside title or body the server gives me the following error: {"error":{"type":"invalid_request","message":"Failed to decode urlencoded POST form…
jinah
  • 1
  • 1
-1
votes
1 answer

Pushbullet HTTP request

Has anyone tried HTTP request with Pushbullet? I tried with postman but it says HTTP not supported, HTTPS allowed. I got success with HTTPS, but I have seen someone did HTTP request here :…
Zim
  • 43
  • 2
  • 10
1 2 3 4 5 6 7
8