Announcement

Collapse
No announcement yet.

Does Pushover work for you?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Does Pushover work for you?

    Hi,

    Can anyone confirm that the Pushover Module works for him? (Tested with many Ubuntu 20.04 LTS Installations)

    No notifications are created or sent although I pass the env var (PUSHOVER_NET_USER="xyz..."), either directly to the binary call or generally as an environment variable.

    I took the pushover token of phoronix out of the source code and made a manual API test call to http://pushover.net/, it worked, so it seems to be phoronix?

    Thank you.


  • #2
    I'll take another look as Pushover may have changed its API since I last personally used it.
    Michael Larabel
    https://www.michaellarabel.com/

    Comment


    • #3
      Hi,

      i made just a test

      PHP Code:
       private static function post_to_pushover($message)
      {
      curl_setopt_array($ch curl_init(), array(
      CURLOPT_URL => 'https://api.pushover.net/1/messages.json',
      CURLOPT_POSTFIELDS => array(
      'token' => 'adwfwpx7rsk13g4hwbut9quhtwtw88',
      'user' => self::$pushover_net_user_key,
      'message' => $message,
      )));
      curl_exec($ch);
      curl_close($ch);

      works fine, i think the env var check or the triggers has a problem.

      Comment

      Working...
      X