Questions tagged [pushover]

Pushover is a simple push notification service that integrates easily into web apps like IFTTT, network monitoring systems like Nagios, shell scripts, servers, and anything else that needs to send alerts to your Android, iPhone, iPad, and Desktop.

Pushover is a simple push notification service that integrates easily into web apps like IFTTT, network monitoring systems like Nagios, shell scripts, servers, and anything else that needs to send alerts to your Android, iPhone, iPad, and Desktop. Now includes home-screen and lock-screen widgets for Android 4.0+, support for sending notifications to Pebble watches, a DashClock extension, and a Tasker event plugin! Visit https://pushover.net/ to find apps, plugins, and services that support Pushover, or get a free API key to create your own app.

25 questions
1
vote
1 answer

How to send Pushover in VBA

What is the best approach to send a Pushover via VBA? In Pushover website code example, I didn't find a VBA example.
Makah
  • 4,435
  • 3
  • 47
  • 68
1
vote
1 answer

Javascript (Userscript) Smartphone Notification via PushOver

Im trying to send a message to my smartphone using the PushOver AVI in a Userscript. The code looks like this: function sendMsg() { $.ajax({ type: "POST", url: "https://api.pushover.net/1/messages.json", datatype:…
xqz313
  • 751
  • 2
  • 6
  • 9
0
votes
1 answer

python-pushover error on Vercel deployment

I'm trying to deploy a Flask app to Vercel and get this error, which I believe is because of the python-pushover package. Here is the error log which gets generated after I run vercel --prod on the terminal. [01:19:33.416] Downloading 523 deployment…
Arturo Belano
  • 113
  • 2
  • 9
0
votes
1 answer

Node-RED Handle error from node that throws no standardexception

I want to use the Pushover Node to send notifications. I'm already using it via curl for some time and very seldom some messages aren't sent. Thats why I have in bash echo "$curlOutput" | grep -qP '{"status":1' if [ ! $? -eq 0 ] then echo "$2"…
Hannes
  • 306
  • 2
  • 10
0
votes
1 answer

Pushover script not getting required results

Following a tutorial for pushover API and I'm stuck. No errors are being thrown up but don't get push bullet notification. This is going to be part of a smart door bell project: import http.client import urllib.request, urllib.parse,…
0
votes
1 answer

How to send a pushover notification with attached image in C# .NET

I'm trying to send a push notification though Pushover API with attached image using C# .NET. The following code returns a json formatted error "message cannot be blank". But the message variable is not empty. Since SSL is outdated I tried using TLS…
wezzix
  • 1,984
  • 1
  • 19
  • 18
0
votes
1 answer

Python publish picture attachment to pushover

I am successfully sending messages to pushover using the below code, however I would like to send picture attachment as introduced in the latest API. How am I able to convert the last code sample to work in python. Working Code: import httplib,…
Ossama
  • 2,401
  • 7
  • 46
  • 83
0
votes
1 answer

http-post through proxy not working

I can get to https://pushover.net/ using chrome browser, but when i try to get to the same website using java to connect to the api and send data it fails. this is my code HttpClient httpClient = (HttpClient)…
f1wade
  • 2,877
  • 6
  • 27
  • 43
0
votes
1 answer

websocket string onMessage, gives java.lang.IllegalStateException: Binary message handler not found

I have a websocket setup using javax.websocket, it seems to connect, but wont work, it keeps giving a java.lang.IllegalStateException: Binary message handler not found final WebSocketContainer webSocketContainer =…
f1wade
  • 2,877
  • 6
  • 27
  • 43
-2
votes
1 answer

Send a formated list with pushover on python

I'm relatively new to python, I built a webscraper that gets the top posts of a website and stores them in a list in python like this: T = ["post1","post2","post3,"post4"] To send the push notification with pushover I installed the pushover module…
topochase
  • 1
  • 1
1
2