Learn R Programming

pushoverr (version 0.1.1)

get_pushover_sounds: Get a list of available message sounds

Description

get_pushover_sounds queries Pushover to receive a list of the sounds that may be played on a user's device when a message is received. Sounds are specified when the message is sent.

Usage

get_pushover_sounds(...)

Arguments

...
An application token can be specified with token

Value

  • A list of available sounds and their descriptions

Examples

Run this code
sounds <- get_pushover_sounds()
for (s in names(sounds))
{
    cat(paste(s, ":", sounds[s], "\n"))
}

Run the code above in your browser using DataLab