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

sending message with pushbullet via python API

environment : Python3.6.1, windows10, pushbullet.py(0.11.0) Hi. I'm just trying to send a text message to smartPhone and PB software which is installed on windows via python-pushbullet API Here is my code from pushbullet import Pushbullet pb=…
YYK
  • 123
  • 3
  • 13
0
votes
1 answer

libcurl continue running after writefunction callback

I am trying to use the libcurl library in C with the pushbullet api. I am trying to connect to a stream at https://stream.pushbullet.com/streaming/. The problem is once the callback function is called when it receives any data, the connection is…
Rumesh
  • 113
  • 1
  • 7
0
votes
1 answer

Sending a notification Via Push API or Push-bullet when a new GitHub release is published for a repo?

One problem with our app was that it was published on Github, so the users have to actively check for a new update. Then it shook me, what if we send a notification (automatically) when releasing a new version of the app? But it was a lot…
Sethu Senthil
  • 169
  • 2
  • 12
0
votes
1 answer

RPushullet is not working: 400: Bad Request - Usually this results from missing a required parameter

I have been using pushbullet in the software R (RPushbullet package) to message me when a script finishes. It worked nicely with my notebook and Iphone, however, with the workstation it is not working. The followiing message is returned: Warning…
0
votes
1 answer

Recent SSL upgrade also introduced SNI which breaks REST API

We use ServiceNow to communicate with PushBullet via REST API. Recently we started getting the following error javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake And a 500 HTTP error. After much research it appears…
Gavin
  • 25
  • 4
0
votes
1 answer

Bash: Command output as variable to curl error

I trying to get this bash script to run a speedtest (speedtest-cli) then pass the output as a variable to pushbullet via curl. #!/bin/bash speed=$(speedtest --simple) curl --header 'Access-Token: <-ACCESS-TOKEN->' \ --header 'Content-Type:…
zevnyc
  • 19
  • 5
0
votes
2 answers

Pushbullet and EOF occurred in violation of protocol (_ssl.c:590)

Since 2 days ago the Pushbullet Kodi addon stop working, throwing this error: EOF occurred in violation of protocol (_ssl.c:590) The GET is made through httplib2 and you can see the simple code there. The strange is that also with the openssl cli I…
elbowz
  • 557
  • 1
  • 4
  • 19
0
votes
0 answers

php cURL posting as json to pushbullet

I want to send SMS via my Android phone. I found a promising api to do so called pushbullet. On section about connecting to it via cURL is says I should add custom header Access-Token: '. I added it in php but curl_exec…
Viszman
  • 1,378
  • 1
  • 17
  • 47
0
votes
0 answers

Trying to print only if the operation is executed

i am pretty bad with using python but im trying to learn. So i have a script that extracts .zip and .rar files for me and that works flawlessly, now the only thing i want to implement is that if the script extracts a .zip or a .rar i want it to use…
nillenilsson
  • 473
  • 1
  • 4
  • 14
0
votes
1 answer

Pushbullet Integration with Amazon Echo (Alexa)

Do you have any intention to integrate your service with Amazon Echo (Alexa)? I believe it would be a great opportunity for you, because currently there is no easy way to connect your phone to the Amazon Echo. I know it would save me several missed…
0
votes
1 answer

Upload file to Pushbullet in Windows 10 app c#

I'm currently using Pushbullet API and need to upload a file. I can successfully get an upload url as specified in the docs using this method: public static async Task GetUploadUrl(string file_name, string file_type) { using…
Alessandro S.
  • 93
  • 2
  • 7
0
votes
1 answer

I am using PushBullet to send a message from Raspberry Pi. What should i enter as the host password in LXTerminal?

I am trying to send a push notification from Raspberry Pi to Pushbullet in Chrome PC from the following resource. After typing the following commands, what should I enter when it asks for host password? sudo apt-get install curl curl -u…
0
votes
2 answers

Pushbullet API: Delete Chat method returns Object not found

I receive a list of chat identifiers using /v2/chats endpoint. When I try to delete a chat found in that list using the /v2/chats/{iden} endpoint I always receive a Object not found error. My request: curl --header 'Access-Token: TOKEN' --request…
0
votes
1 answer

Passing form variables to curl request

Alright, so I'm trying to create a simple HTML page with a form to submit a pushbullet request using cURL. So far, my HTML looks like this. Omran's Push Application
Omran
  • 95
  • 2
  • 12
0
votes
2 answers

Send sms not working in push bullet with nodejs

i am trying to send sms using push bullet in nodeJs. From the push bullet docs, i got the function : "sendSMS", which can be used to send the message as SMS to a mobile phone. But, when i run the code, it is saying that "sendSMS is not a function".…
Faariz Mohammed
  • 113
  • 1
  • 12