Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session
SOLVED

[AEM Author instance] Exclude servlet from authentication requirement

Avatar

Level 3

Hi 

I have written a custom servlet in AEM author (v6.1). I would like to get response from  this servlet without providing auth credentials. Is it possible to have such exclusion in AEM author instance?

Current behaviour: At this moment, when I hit my servlet, the request is redirected to AEM login page. 

 

Any pointers on this will be a big help. Thanks!

1 Accepted Solution

Avatar

Correct answer by
Level 10

Configure to exclude authentication at http://localhost:port/system/console/configMgr/org.apache.sling.engine.impl.auth.SlingAuthenticator

Or

in your code add

Property(name = "sling.auth.requirements", value = "-{pathtoservlet}")

 Notice the dash prefixing the path - if you don't include the dash that means the path requires authentication.

View solution in original post

3 Replies

Avatar

Correct answer by
Level 10

Configure to exclude authentication at http://localhost:port/system/console/configMgr/org.apache.sling.engine.impl.auth.SlingAuthenticator

Or

in your code add

Property(name = "sling.auth.requirements", value = "-{pathtoservlet}")

 Notice the dash prefixing the path - if you don't include the dash that means the path requires authentication.

Avatar

Level 5

I am facing a similar issue, I want to allow the user to access AEM-INSTANCE/linkshare.html so I configured the following:

Screen Shot 2017-12-14 at 13.47.59.png

I still get the login screen if I navigate to the linkshare url, what am I doing wrong?

Avatar

Level 2

In case  of author AEM 6.5 instance, it can be done by excluding the servlet path in “Apache Sling Authentication Service"https://queryresolved.com/2020/06/03/aem-6-5-author-exclude-a-url-from-authentication-requirement/