Sling Authentication Handler - [ COOKIE BASED AUTHENTICATION ]
Hi all,
- I reffered the below sling documentation for sling authentication handler
Apache Sling :: Authentication - AuthenticationHandler - What has to be configured in AEM OGSI bundle Apache Sling Authentication Service
- And should we do any additional work in SlingServlet rather than the below code
@SlingServlet(paths = "/bin/upload/jsoncontent", methods = "GET", metatype = false)
public class CMTServlet extends SlingSafeMethodsServlet {
private final Logger log = LoggerFactory.getLogger(getClass()); }
=> I am facing 403 while trying to hit above servlet using Apache Authentication Handler...
=> How to solve it ?
=> I want my Sling Servlet to be protected?
Thanks in advance