我正在尝试通过 JasperReports Server 休息用户服务api创建一个新用户。
但我总是得到400个不好的请求,这就是我想要的。谁能指出我做错了什么?
curl -i -u jasperadmin:jasperadmin -H "Content-Type: application/json" -H "Accept: application/json" -X PUT -d '{\"username\":\"mynewuser\",\"password\":\"mynewuser\",\"fullName\":\"NEWUSER\":\"emailAddress:\"user_1@test.com\"}' "http://localhost:8080/jasperserver/rest/user/"
HTTP/1.1 400 Bad Request
Server: Apache-Coyote/1.1
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 05:30:00 GMT+05:30
P3P: CP="ALL"
Set-Cookie: JSESSIONID=F7394A9F7348C22E4B264FBCEB6B828F; Path=/jasperserver
Content-Type: text/html;charset=UTF-8
Content-Length: 971
Date: Mon, 02 Sep 2013 10:32:21 GMT
Connection: close
答案 0 :(得分:0)
问题正在发生,因为我错误地指的是一些旧的jasper Web服务文档,它与我正在使用的Jasper Server版本不匹配。愚蠢的错误对我而言。
作为参考,正确的网址应该是这样的http://example.com/jasperserver/rest_v2/organizations/organization_id/users/<new_user_id>
我使用的是jasper服务器的商业版,所以我需要在请求网址中包含organisation_id。