使用 httpbuilder 测试 jsonp Rest 应用程序响应
你好 我正在尝试建立一个提供 JSON 响应的休息服务。 昨天我想出了什么是 JSONP,为什么要使用它等等。 今天我想对我的新版本的服务进行一些测试。 为了测试它,我使用 HTTPbuilder。但我无法让它正常工作。 这是我的测试的开始:
def client = new RESTClient("http://localhost:"+SERVER_PORT)
def resp = client.get(path:'/music', contentType:JSON);
这是我得到的错误:
ATTENTION: Error parsing 'application/javascript' response
net.sf.json.JSONException: Invalid JSON String
How can i help httpbuilder to理解响应是一个JS回调?
Hi
I'm trying to build up a rest Service which provide JSON response.
Yesterday i figured about what is JSONP, why to use it an so and so.
Today i would like to make some test with my new version of my service.
To test it, i use HTTPbuilder. But i can't get it working correctly.
Here is the start of my test:
def client = new RESTClient("http://localhost:"+SERVER_PORT)
def resp = client.get(path:'/music', contentType:JSON);
And here is the error i got:
ATTENTION: Error parsing 'application/javascript' response
net.sf.json.JSONException: Invalid JSON String
How can i help httpbuilder to understand that the response is a JS callback?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我在这件事上有点傻。
接受的内容类型必须是 ContentType.ANy
Ok i was a littel dumb on this one.
The accepted content type must be ContentType.ANy