Pushover Support
-
Please add support for Pushover. It’s similar to Pushbullet but much better. I prefer Pushover because it supported cross-platforms better than Pushbullet, and easy to use API for development, such as running bash scripts on servers. They already provide excellent code snippets for many other languages: PHP, JavaScript, Perl, Ruby, etc…
Here’s example code, it’s not mine but took it off their website:
<?php
curl_setopt_array($ch = curl_init(), array(
CURLOPT_URL => "https://api.pushover.net/1/messages.json",
CURLOPT_POSTFIELDS => array(
"token" => "APP_TOKEN",
"user" => "USER_KEY",
"message" => "hello world",
),
CURLOPT_SAFE_UPLOAD => true,
CURLOPT_RETURNTRANSFER => true,
));
curl_exec($ch);
curl_close($ch);
?>The page I need help with: [log in to see the link]
The topic ‘Pushover Support’ is closed to new replies.