This commit is contained in:
Hong Ooi 2019-05-10 12:06:03 +10:00
Родитель 5f09c3801c
Коммит 421899d088
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -3,6 +3,7 @@
* Much improved support for authenticating with a certificate. In the `certificate` argument, specify either the name of a PEM/PFX file, or an AzureKeyVault object representing a cert.
* Support providing a path in the `aad_host` argument, for Azure B2C logins. Note that B2C requires https redirect URIs, which are not currently supported by httpuv; rather than the authorization_code flow, use device_code or client_credentials.
* Fix bug that prevented `token_args` argument from being passed to the token endpoint.
* If authentication fails using the `authorization_code` flow, print the AAD error message, if possible.
* Add support for the `on_behalf_of` authorization flow.
# AzureAuth 1.0.2

Просмотреть файл

@ -1,6 +1,7 @@
init_authcode <- function()
{
stopifnot(is.list(self$token_args))
stopifnot(is.list(self$authorize_args))
if(!requireNamespace("httpuv", quietly=TRUE))
stop("httpuv package must be installed to use authorization_code method", call.=FALSE)