Nothing
#' Retrieve hashed passwd for a user
#' @param user username
#' @param password passwd
#' @param ... other argus
#' @return pw hash
#' @export
oh.user.auth <- function(user, password, ...){
#when using oh.login, argument 'serverurl' is part of the ... ellipse
xhr <- oh.call("/user/auth", user=user, password=password, ...);
#check response
if(xhr$result == "success"){
message("Hashed password retrieved.");
return(xhr[["hashed_password"]]);
}
return(xhr);
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.