我试图用"Http Request Plugin"做一个简单的POST请求.我的问题是让凭据工作.我已经设置了全球凭证 user:pass
.
但是在我的代码中尝试这个
withCredentials([usernameColonPassword(credentialsId: 'akamai', variable: 'akamai')]) { def response = httpRequest url: requestUrl, contentType: requestContentType, httpMode: requestHttpMode, requestBody: requestContent, authentication: akamai echo "Status: ${response.status}\nContent: ${response.content}" }
结果是
java.lang.IllegalStateException: Authentication 'user:pass' doesn't exist anymore
Ian A.. 13
HTTP Request Plugin v1.8.18 现在支持Credentials插件中的凭据(HTTP Request Plugin v1.8.18 现在依赖于Credentials插件的v2.1.3).
要使用Jenkins凭据执行HTTP请求,您可以使用以下代码:
def response = httpRequest authentication: 'credentialsID', url: "http://www.example.com"
credentialsID
Jenkins中凭据的ID 在哪里:
"配置系统">"HTTP请求"下的基本凭据现在指出不推荐使用基本/摘要式身份验证,而是使用Jenkins凭据:
HTTP Request Plugin v1.8.18 现在支持Credentials插件中的凭据(HTTP Request Plugin v1.8.18 现在依赖于Credentials插件的v2.1.3).
要使用Jenkins凭据执行HTTP请求,您可以使用以下代码:
def response = httpRequest authentication: 'credentialsID', url: "http://www.example.com"
credentialsID
Jenkins中凭据的ID 在哪里:
"配置系统">"HTTP请求"下的基本凭据现在指出不推荐使用基本/摘要式身份验证,而是使用Jenkins凭据: