Skip to content

Commit

Permalink
Generic resource parameter support (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
strehle authored Jan 2, 2025
1 parent eab77e9 commit 99f66aa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions openid-client/openid-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,9 @@ func main() {
if *loginHint != "" {
requestMap.Set("login_hint", *loginHint)
}
if *resourceParam != "" {
requestMap.Set("resource", *resourceParam)
}

if *command != "" {
if *scopeParameter != "" {
Expand Down

0 comments on commit 99f66aa

Please sign in to comment.