From f27b69d06bdc3747c7d32b7c001c9e0d828c6137 Mon Sep 17 00:00:00 2001 From: William Kim Date: Wed, 26 Jun 2013 16:26:34 -0400 Subject: [PATCH] removed Version field from server discovery configuration. --- .../main/java/org/mitre/discovery/web/DiscoveryEndpoint.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/openid-connect-server/src/main/java/org/mitre/discovery/web/DiscoveryEndpoint.java b/openid-connect-server/src/main/java/org/mitre/discovery/web/DiscoveryEndpoint.java index 3429a2031..92f18208d 100644 --- a/openid-connect-server/src/main/java/org/mitre/discovery/web/DiscoveryEndpoint.java +++ b/openid-connect-server/src/main/java/org/mitre/discovery/web/DiscoveryEndpoint.java @@ -132,8 +132,6 @@ public class DiscoveryEndpoint { /* * - version - REQUIRED. Version string of the provider response. "3.0" is the expected value. issuer REQUIRED. URL using the https scheme with no query or fragment component that the OP asserts as its Issuer Identifier. authorization_endpoint @@ -215,7 +213,6 @@ public class DiscoveryEndpoint { } Map m = new HashMap(); - m.put("version", "3.0"); m.put("issuer", config.getIssuer()); m.put("authorization_endpoint", baseUrl + "authorize"); m.put("token_endpoint", baseUrl + "token");