mod_http_oauth2/mod_http_oauth2.lua
changeset 5400 ac7c5669e5f5
parent 5398 434ee49b04de
child 5401 18b57e91b5e5
--- a/mod_http_oauth2/mod_http_oauth2.lua	Sun Apr 30 20:34:36 2023 +0200
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Sun Apr 30 17:04:55 2023 +0200
@@ -918,6 +918,8 @@
 
 		-- Some convenient fallback handlers
 		["GET /register"] = { headers = { content_type = "application/schema+json" }; body = json.encode(registration_schema) };
+		["GET /token"] = function() return 405; end;
+		["GET /revoke"] = function() return 405; end;
 	};
 });