This fcn uses the authenticated API endpoint to mimic a previously available legacy endpoint.
Usage
kth_profile_legacy(userid = NULL, config = NULL)
Arguments
- userid
a string with the account name or KTH user id
- config
a configuration setting for the KTH APIs including base URL etc, by default from config()
Value
results records returned from the search
Examples
if (FALSE) { # \dontrun{
kth_profile_legacy("agnel")
kth_profile_legacy("tjep")
tryCatch(kth_profile_legacy("hoyce"), error = function(e) e, warning("Does not exist?"))
} # }