32

I have been searching around but cannot find any site like this. I want to know if there is some dummy server that will respond to test GET requests and return a JSON object? Basically something like:

HTTPUtil.httpGet("http://www.ipsumlorem.com/json");

and have it return filler text JSON objects like:

{
   "title" : "Ipsum Lorem",
   "content" : "blah blah blah"
}
4

5 回答 5

34

我猜http://www.jsontest.com/将成为你最好的新朋友......

根据您的需要尝试一下: http: //echo.jsontest.com/title/ipsum/content/blah

它将返回:

{
   "content": "blah",
   "title": "ipsum"
}
于 2013-07-22T14:41:50.317 回答
14

您还可以使用www.mocky.io,在其中模拟您的 HTTP 响应以测试您的 REST API。

还可以更改响应的标头,当然也可以精确地写入内容(包括 json ...)

于 2014-10-28T11:06:22.103 回答
9

对于以下教程和讲习班,这也可能很有用:http: //jsonplaceholder.typicode.com

于 2014-08-21T03:37:37.993 回答
4

您可以使用http://apiary.io非常快速地创建模拟 REST API。

如果您不关心 Content-Type,则将纯文本文件放入 Dropbox 会更快。

于 2013-07-19T15:00:34.460 回答
1

您可以使用 SoftwareMill 的 TestServer:https ://github.com/softwaremill/softwaremill-common/tree/master/softwaremill-test/softwaremill-test-server

于 2014-09-23T15:53:58.203 回答