Reputation: 67997
I'm trying to send HTTP requests to a Jenkins server which requires authentication, which authentication scheme do I need to use? cURL seems to figure it out automatically, FWIW.
Upvotes: 4
Views: 3785
Reputation: 700
You can use HTTP BASIC authentication to authenticate remote API requests. https://wiki.jenkins-ci.org/display/JENKINS/Authenticating+scripted+clients
Upvotes: 0