Skip to content

Commit 467275e

Browse files
authored
Fix for httr2 1.2.0 (#163)
This release will remove the deprecated `port` argument from `oauth_flow_auth_code`. I don't think your usage here was actually doing anything, so it can be safely removed.
1 parent 2b00d98 commit 467275e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

R/authentication.R

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,7 @@ OIDCAuthCodeFlowPKCE <- R6Class(
531531
client = private$oauth_client,
532532
auth_url = private$endpoints$authorization_endpoint,
533533
scope = paste0(private$scopes, collapse = " "),
534-
pkce = TRUE,
535-
port = 1410
534+
pkce = TRUE
536535
),
537536
value = private$isInteractive()
538537
)
@@ -571,8 +570,7 @@ OIDCAuthCodeFlow <- R6Class(
571570
client = private$oauth_client,
572571
auth_url = private$endpoints$authorization_endpoint,
573572
scope = paste0(private$scopes, collapse = " "),
574-
pkce = FALSE,
575-
port = 1410
573+
pkce = FALSE
576574
),
577575
value = private$isInteractive()
578576
)

0 commit comments

Comments
 (0)