Re: Making specific jenkins request as public request without authentication

2018-09-24 Thread Mukesh Singal
Thankyou Robert & Jesse. It solved my problem. On Monday, September 24, 2018 at 11:35:37 PM UTC+5:30, Jesse Glick wrote: > > On Mon, Sep 24, 2018 at 10:38 AM Robert Sandell > wrote: > > You will probably also need to define a CrumbExclusion. > > Not for GET requests, and for recent versions of

Re: Making specific jenkins request as public request without authentication

2018-09-24 Thread Jesse Glick
On Mon, Sep 24, 2018 at 10:38 AM Robert Sandell wrote: > You will probably also need to define a CrumbExclusion. Not for GET requests, and for recent versions of Jenkins I think it is not necessary even for POST since IIRC we stopped requiring crumbs on requests made via API token (or anonymously

Re: Making specific jenkins request as public request without authentication

2018-09-24 Thread Robert Sandell
Use UnprotectedRootAction . You will probably also need to define a CrumbExclusion . Though we normally consider unprotected read access to ag

Making specific jenkins request as public request without authentication

2018-09-24 Thread Mukesh Singal
Hi Everyone, I have implemented a Remote API which tells slaves *healthCheck *status. But Jenkins redirect users to authenticate first. I want to skip authentication for on a specific below URL. *http://localhost:8080/jenkins/healthCheckPlugin/api/xml* I have tried to create Filter and but fa