-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwl_request.Rd
65 lines (58 loc) · 1.81 KB
/
wl_request.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/request.R
\name{wl_request}
\alias{wl_request}
\alias{wl_params}
\title{General request function for weatherlink api}
\usage{
wl_request(
endpoint = NULL,
path = NULL,
query = NULL,
api_key = Sys.getenv("WL_API_KEY"),
api_secret = Sys.getenv("WL_API_SECRET"),
ignore_ratelimit = FALSE,
verbose = FALSE
)
wl_params(
path = NULL,
query = NULL,
api_key = Sys.getenv("WL_API_KEY"),
api_secret = Sys.getenv("WL_API_SECRET")
)
}
\arguments{
\item{endpoint}{api endpoint to query}
\item{path}{named list; path parameter to pass}
\item{query}{named list of length 2; Only "start-timestamp", "end_timestamp"
are allowed}
\item{api_key}{API key. Read by default from env variable \code{WL_API_KEY}}
\item{api_secret}{API secret. Read by default from env variable
\code{WL_API_SECRET}}
\item{ignore_ratelimit}{ignore wait time to not hit rate limit of 10/second?}
\item{verbose}{logical, should the request be printed?}
}
\description{
authentication is done via hmac, see \code{\link[=wl_params]{wl_params()}}.
}
\examples{
\dontrun{
stations <- wl_request(endpoint = "stations")
wl_request(endpoint = "stations",
path = list(`station-ids` = stations$stations[[1]]$station_id))
wl_request(endpoint = "stations",
path = list(`station-ids` = c(stations$stations[[1]]$station_id,
stations$stations[[2]]$station_id)))
wl_request(endpoint = "current",
path = list(`station-id` = stations$stations[[1]]$station_id))
wl_request(endpoint = "historic",
path = list(`station-id` = stations$stations[[1]]$station_id),
query = list(
`start-timestamp` = as.integer(as.POSIXct("2020-06-16 13:59:39 CET")),
`end-timestamp` = as.integer(as.POSIXct("2020-06-16 20:59:39 CET"))))
}
\dontrun{
wl_params()
wl_params(path = list(`station-ids` = 123456))
}
}