cred_funs {gargle}R Documentation

Credential function registry

Description

Functions to query or manipulate the registry of credential functions consulted by token_fetch().

Usage

cred_funs_list()

cred_funs_add(...)

cred_funs_set(ls)

cred_funs_clear()

cred_funs_set_default()

Arguments

...

One or more functions with the right signature: its first argument is named scopes, and it includes ... as an argument.

ls

A list of credential functions.

Value

A list of credential functions or NULL.

Functions

See Also

token_fetch(), which is where the registry is actually used.

Examples

names(cred_funs_list())

creds_one <- function(scopes, ...) {}
cred_funs_add(creds_one)
cred_funs_add(one = creds_one)
cred_funs_add(one = creds_one, two = creds_one)
cred_funs_add(one = creds_one, creds_one)

# undo all of the above and return to default
cred_funs_set_default()

[Package gargle version 1.2.1 Index]