get_token {textrar} | R Documentation |
This function retrieves an access token from the API using the provided key and secret.
get_token(key, secret)
key |
The API key. |
secret |
The API secret. |
A character string containing the access token.
## Not run:
key <- "abcdefghijklmnopqrstuvw01234567890abcdef1" # API key
secret <- "xyzabcdefghijklmnopqrstuvw012345" # API secret
token <- get_token(key = key, secret = secret)
## End(Not run)