coinlist_signature {cryptotrackr} | R Documentation |
coinlist_signature
Description
coinlist_signature
Usage
coinlist_signature(api_secret, coinlist_time, method, path, body)
Arguments
api_secret |
your Coinlist API secret |
coinlist_time |
a timestamp in the correct format according to Coinlist |
method |
"GET" or "POST" |
path |
the path of your API call |
body |
the body of your API call |
Value
returns a signature for use in your Coinlist API calls
Examples
## Not run:
api_secret <- "..."
coinlist_time <- coinlist_time()
method <- "GET"
path <- "/v1/accounts"
body <- ""
coinlist_signature <- coinlist_signature(api_secret, coinlist_time, method, path, body)
## End(Not run)
[Package cryptotrackr version 1.3.3 Index]