Skip to content

Notify_pushjet

Chris Caron edited this page Feb 7, 2019 · 9 revisions

Pushjet Notifications

  • Source: https://pushjet.io/
  • Icon Support: No
  • Message Format: Text
  • Message Limit: 32768 Characters per message
  • The Pushjet online service appears to have gone dead. They did however leave behind all of our source code as open source here on github. Thus the apprise plugin pjet:// still works for the local hosting of a Pushjet server.

Syntax

If you want to use your own custom Pushjet server, then the following identify the syntax you may use:

  • pjet://{secret_key}@{host}
  • pjet://{secret_key}@{host}:{port}
  • pjets://{secret_key}@{host}
  • pjets://{secret_key}@{host}:{port}

Parameter Breakdown

Variable Required Description
secret_key Yes The Secret Key associated with your Pushjet account.
host Yes The Pushjet server you're hosting
port No The Pushjet port optional and only required if you're hosting your own notification server on a different port then the standard ones. By default the port is 80 for pjet:// and 443 for all pjets:// references.

Example

Send a Pushjet notification:

# Assuming our {secret_key} is abcdefghijklmnopqrstuvwxyzabc
# Assuming our {hostname} is localhost
notify pjet://abcdefghijklmnopqrstuvwxyzabc@localhost
Clone this wiki locally