Skip to content

Commit

Permalink
Add PkceRequired and PkceS256Required to Client struct
Browse files Browse the repository at this point in the history
  • Loading branch information
ShoeiMotomura authored Dec 27, 2022
1 parent de93815 commit 2e4f35c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGES.ja.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
変更点
======

v1.1.9 (2022 年 12 月 27 日)
----------------------------

- `Client` 構造体
* `PkceRequired` フィールドを追加。
* `PkceS256Required` フィールドを追加。

v1.1.8 (2022 年 09 月 22 日)
----------------------------

Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGES
=======

v1.1.9 (2022-12-27)
-------------------

- `Client` struct
* Added `PkceRequired` field.
* Added `PkceS256Required` field.

v1.1.8 (2022-09-22)
-------------------

Expand Down
6 changes: 6 additions & 0 deletions dto/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,4 +244,10 @@ type Client struct {
// The flag which indicates whether the JWE enc of encrypted request
// object must match the value of the request_object_encryption_enc client metadata.
RequestObjectEncryptionEncMatchRequired bool `json:"requestObjectEncryptionEncMatchRequired,omitempty"`

// The flag which indicates whether code_challenge is required in authorization request.
PkceRequired bool `json:"pkceRequired,omitempty"`

// The flag which indicates whether code_challenge_method=S256 is required in authorization request.
PkceS256Required bool `json:"pkceS256Required,omitempty"`
}

0 comments on commit 2e4f35c

Please sign in to comment.