正在尝试使用WPS从JIRA REST API获取数据。我正在使用HTTP PROC调用JIRA rest api。
proc http
method="GET"
url="http://servername:8080/rest/api/2/search?%str(&)fields=project,status%str(&)jql=project=C12395"
webusername="username"
webpassword="password"
ct="application/JSON"
out=resp;
run;
我收到的错误/响应代码为400。
NOTE: Call to [http://servername:8080/rest/api/2/search?&fields=project,
status&jql=project=C12395] returned [400]
NOTE: Procedure http step took :
real time : 0.628
cpu time : 0.031
我真的不确定丢失了什么。在JAVA中可以使用相同的JIRA REST API URL。
注意:WPS版本为3.2
谢谢! 巴拉提