Skip to content

Commit

Permalink
#930 : fixed bug with not passed rptAsJwt flag in oxauth-client
Browse files Browse the repository at this point in the history
#930

(cherry picked from commit 4c089f3)

(cherry picked from commit 9dd15c7)
  • Loading branch information
yuriyz committed Dec 12, 2018
1 parent fefc532 commit e4d1796
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ private RegisterResponse _exec() {
if (getRequest().getAccessTokenSigningAlg() != null) {
requestBody.put(ACCESS_TOKEN_SIGNING_ALG.toString(), getRequest().getAccessTokenSigningAlg().toString());
}
if (getRequest().getRptAsJwt() != null) {
requestBody.put(RPT_AS_JWT.toString(), getRequest().getRptAsJwt().toString());
}
if (getRequest().getIdTokenSignedResponseAlg() != null) {
requestBody.put(ID_TOKEN_SIGNED_RESPONSE_ALG.toString(), getRequest().getIdTokenSignedResponseAlg().getName());
}
Expand Down

0 comments on commit e4d1796

Please sign in to comment.