get_activity_list {rStrava} | R Documentation |
Get an activities list
Description
Get an activities list of the desired type (club, user)
Usage
get_activity_list(stoken, id = NULL, before = NULL, after = NULL, club = FALSE)
Arguments
stoken |
A |
id |
numeric for id of the activity or club if |
before |
date object for filtering activities before the indicated date |
after |
date object for filtering activities after the indicated date |
club |
logical if you want the activities of a club |
Details
Requires authentication stoken using the strava_oauth
function and a user-created API on the strava website. If retrieving activities using individual id
values, the output list returned contains additional information from the API and the results have not been tested with the functions in this package. It is better practice to retrieve all activities (as in the example below), use compile_activities
, and then filter by individual activities.
If retrieving club activities, the user for the API must be a member of the club.
Value
A list of activities for further processing or plotting.
Examples
## Not run:
# create authentication token
# requires user created app name, id, and secret from Strava website
stoken <- httr::config(token = strava_oauth(app_name, app_client_id,
app_secret, cache = TRUE))
get_activity_list(stoken)
## End(Not run)