Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 3.1.8
-
Component/s: JAX-RS Security
-
Labels:None
-
Estimated Complexity:Unknown
Description
See line 118 in OauthJSONProvider :
appendJsonPair(sb, "iss", obj.getIss(), false);
it should be
appendJsonPair(sb, "iss", obj.getIss(), true );
in my opinion since the issuer typically is a uri.