Security settings

Report a typo

Match access rule settings with their descriptions.

Match the items from left and right columns
requestMatchers(HttpMethod.POST, "/messages").authenticated()
requestMatchers("/index.html").permitAll()
requestMatchers("/**/hidden").denyAll()
requestMatchers("/api/*").authenticated()
Prohibits any access to the /messages/hidden and /api/v3/hidden endpoints.
Permits making POST requests to the /messages endpoint to authenticated users only.
Permits access to the index.html to anyone.
Permits access to the /api/verify to authenticated users only.
___

Create a free account to access the full topic