mod_http_oauth2/mod_http_oauth2.lua
changeset 5457 7dc429b7c3f3
parent 5456 b071d8ee6555
child 5458 6970c73711c2
equal deleted inserted replaced
5456:b071d8ee6555 5457:7dc429b7c3f3
   752 		"client_uri";
   752 		"client_uri";
   753 		-- We need at least one redirect URI for things to work
   753 		-- We need at least one redirect URI for things to work
   754 		"redirect_uris";
   754 		"redirect_uris";
   755 	};
   755 	};
   756 	properties = {
   756 	properties = {
   757 		redirect_uris = { type = "array"; minLength = 1; items = { type = "string"; format = "uri" } };
   757 		redirect_uris = { type = "array"; minItems = 1; items = { type = "string"; format = "uri" } };
   758 		token_endpoint_auth_method = {
   758 		token_endpoint_auth_method = {
   759 			type = "string";
   759 			type = "string";
   760 			enum = { "none"; "client_secret_post"; "client_secret_basic" };
   760 			enum = { "none"; "client_secret_post"; "client_secret_basic" };
   761 			default = "client_secret_basic";
   761 			default = "client_secret_basic";
   762 		};
   762 		};