Answers for "jenkins crumb python request"

0

jenkins crumb python request

with requests.Session() as s:
    s.auth = auth
    crumb = s.get(jenkins_url + "crumbIssuer/api/json").json()['crumb']
    s.headers.update({"token": token, "Jenkins-Crumb": crumb})
Posted by: Guest on May-03-2022
0

jenkins crumb python request

s.post(url)
Posted by: Guest on May-03-2022

Python Answers by Framework

Browse Popular Code Answers by Language