Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Notify_pushsafer

Chris Caron edited this pageAug 3, 2020 ·6 revisions

Pushsafer Notifications

  • Source:https://www.pushsafer.com/
  • Icon Support: No
  • Attachment Support: Yes
  • Message Format: Text
  • Message Limit: 32768 Characters per message

There isn't too much effort requires to use PushSafer notifications. The message is basically just passed to your online PushSafer account and then gets relayed to your device(s) you've setup from there.

Getting Your Private Key

Once you log into their officialwebsite, you can find the{private_key} on yourdashboard.

Syntax

Valid syntax is as follows:

  • psafers://{private_key}
  • psafers://{private_key}/{device_id}
  • psafers://{private_key}/{device_id1}/{device_id2}/{device_idN}
  • psafers://{private_key}?priority={priority}
  • psafers://{private_key}?priority=emergency&sound=okay
  • psafers://{private_key}?vibrate=2

If no device is specified, thea reserved device is used by default. thea notifiesall of your devices currently associated with your account.

Secure connections are always made when you usepsafers:// howeverpsafer:// also works if you wish to use an unencrypted connection.

Parameter Breakdown

VariableRequiredDescription
private_keyYesThe private key associated with your PushSafer account. This can be found on yourdashboard after successfully logging in.
device_idNoThe device identifier to send your notification to. By default if one isn't specified then all of devices associated with your account are notified.
priorityNoCan below,moderate,normal,high, oremergency; the default is to use whatever the default setting is for the device being notified.
soundNoCan optionally identify one of the optional sound effects identifiedhere. By default this variable isn't set at all.
vibrationNoAndroid and iOS devices can be set to vibrate upon the reception of a notification. By setting this, you're effectively setting the strength of the vibration. You can set this to1,2 or3 where 3 is a maximum vibration setting and 1 causes a lighter vibration. By default this variable isn't set at all causing your device default settings to take effect.

Example

Send a PushSafer notification to all of our configured devices:

# Assuming our {private_key} is 435jdj3k78435jdj3k78435jdj3k78apprise -vv -t"Test Message Title" -b"Test Message Body" \   psafers://435jdj3k78435jdj3k78435jdj3k78

Send a PushSafer notification with the Emergency Priority:

# Emergency priority advises you to also specify the expire and# retry values.# Assuming our {user_key} is 435jdj3k78435jdj3k78435jdj3k78apprise -vv -t"Test Message Title" -b"Test Message Body" \   psafers://435jdj3k78435jdj3k78435jdj3k78?priority=emergency
Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp