Description Usage Arguments Value Note Examples
View source: R/get_pushover_limits.R
get_pushover_limits()
retrieves the message usage and limit information
for the given application.
1 | get_pushover_limits(app = get_pushover_app())
|
app |
application token (see |
A list containing messaging usage for the given app. Fields include:
limit
: Number of messages allowed per month
remaining
: Number of remaining messages in current month
reset
: Unix timestamp indicating when message count is reset
status}: request status (
1= success) \item
request: unique request ID \item
raw': the raw httr::response object
This information can alternatively be gotten by examining the headers
in the response to previous API calls. Look for headers
x-limit-app-limit
, x-limit-app-remaining
, and
x-limit-app-reset
. For example, if x
stores the response from a
pushover()
call, httr::headers(x$raw)
will return all of
the headers included in the response.
1 2 3 4 | ## Not run:
lims <- get_pushover_limits(app = "azGDORePK8gMaC0QOYAMyEEuzJnyUi")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.