我正在使用HTTP Request Plugin对我的Bitbucket服务器进行API调用。
以下调用返回所需的结果:
def my-url = "http://my-username:my-password@my-bitbucket-server.com:7990/rest/api/1.0/my-project/pull-request-10"
def response = http_request my-url
但是,我遇到了HTTP Request Plugin的问题,因为它在日志中以纯文本形式输出我的密码。
因此,我尝试从一个groovy脚本执行相同的调用:
def response = new URL(my-url).getText()
但为此我得到了401
服务器响应。
不知道为什么这次呼叫失败了?