A wrapper to the new
method defined in the Token
class.
create_token_profile( token = askpass:::readline_silent("Enter/Paste a token: "), auth_type = "Bearer" )
token | a string for token |
---|---|
auth_type | type of HTTP authentication.
Should be |
An object of class Token
if (FALSE) { # Create a profile with "Bearer" authentication type myProfile <- create_token_profile() myProfile # Create a profile with a "Basic" authentication type myProfile2 <- create_token_profile(auth_type = "Basic") myProfile2 }