If endpoint is specified, returns a character string with the URL.
If endpoint is NULL, returns a named list of all endpoint URLs.
Arguments
endpoint
A character string specifying which endpoint URL to return.
Must be one of: "authorize", "token", or "devicecode". If NULL
(default), returns a list of all endpoint URLs.
oauth_host
A character string specifying the Azure authority host.
Defaults to default_azure_host().
tenant_id
A character string specifying the tenant ID. Defaults to
default_azure_tenant_id().
# Get all URLsdefault_azure_url()
# Get specific endpointdefault_azure_url("token")
# Custom tenantdefault_azure_url("authorize", tenant_id = "my-tenant-id")