**如何获取API_token_for_use?**Manage Jenkins > Manage Users > Select your user > configure > get the API Token for user(create if you don't have one) **如何获取job_authentication_token?**选择jenkins job > Trigger builds remotely(例如,从脚本)> Authentication Token
现在,你可以像下面这样使用curl,
curl -X POST -u username:api_token_for_user http://yourjenkins.com/job/yourJenkinsJob/buildWithParameters?token=job_authentication_token
2条答案
按热度按时间fcg9iug31#
首先尝试常规的curl调用,如in this answer
一旦这是工作,你可以报告他们的 Postman 很容易。
但是请仔细检查Jenkins作业中构建参数的确切名称。
zi8p0yeb2#
**如何获取API_token_for_use?**Manage Jenkins > Manage Users > Select your user > configure > get the API Token for user(create if you don't have one)
**如何获取job_authentication_token?**选择jenkins job > Trigger builds remotely(例如,从脚本)> Authentication Token
现在,你可以像下面这样使用curl,
将其导入Postman。
导入并粘贴整个curl命令。Postman将导入您粘贴的内容。您的-u用户名:API_token_for_user将在Postman中作为基本身份验证类型导入。参考下图。
您甚至可以使用参数进行构建,其中可以在POST请求中传递参数,或者以表单数据的形式传递Body,或者以raw>JSON的形式传递Body