使用 httpbuilder 测试 jsonp Rest 应用程序响应

发布于 2024-09-28 10:04:51 字数 475 浏览 9 评论 0原文

你好 我正在尝试建立一个提供 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼趣 2024-10-05 10:04:51

好吧,我在这件事上有点傻。
接受的内容类型必须是 ContentType.ANy

Ok i was a littel dumb on this one.
The accepted content type must be ContentType.ANy

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文