我正在开发一个从JIRA数据库中提取数据的应用程序。我正在使用RESTClient API使用 post 方法进行基本身份验证。
完整代码(编辑):
class IssuesController {
def xyz = this.encodeAuth("username", "password")
def index() {
def login = new RESTClient ('http://my-jira/rest/auth/1/')
def response = login.post(
path : 'session',
headers : ['Authorization' : 'Basic ' + xyz + '=='])
render response.data.toString()
}
public String encodeAuth(username, password) {
def authC = username + ':' + password
def bytes = authC.bytes
return bytes.encodeBase64().toString();
}
我收到HTTPResponseException
消息Unsupported Media Type
。如果我使用 get 方法,则身份验证工作正常。 (但它没有开始会话,所以没用)。我甚至尝试更改标题headers : ['Content-Type' : 'application/json', 'Accept' : 'application/json']
。
使用FireBug分析网络标头,Content-Type
和Accept
标头仍未更改。
Response Headers
HTTP/1.1 500 Internal Server Error
Content-Type: text/html;charset=UTF-8
Content-Language: en-US
Connection: close
Request Headers
GET /GTPortal/issues/index HTTP/1.1
Host: localhost:8099
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
使用POST时消息不支持的媒体类型的任何帮助!?
答案 0 :(得分:0)
检查您的休息服务接受的请求数据类型,例如application / json等,以及您的帖子请求中缺少正文部分。
RESTClient将Accept: */*
放入请求标头中,并根据响应内容类型标头中给出的内容解析响应。有关更多信息,请访问。
http://groovy.codehaus.org/modules/http-builder/doc/rest.html