문제

Get/Post/Put/Delete 메소드를 최대한 활용하는 편안한 API를 (수동으로) 테스트하고 있습니다. 명령 줄에 컬을 사용하여 다른 입력 옵션을 신속하게 테스트하는 대신 Windows GUI 응용 프로그램이 있어도 편리합니다. 그런 것이 존재합니까?

도움이 되었습니까?

해결책

Use Poster with Firefox.

다른 팁

I know this post is a bit old, but Dev HTTP Client for Chrome is by far the best plugin I've found.

Along with providing a nice UI that pretty formats responses (like JSON and XML), it allows you to save any requests. IMHO, the best feature is the ability to set different "contexts" and set variables. For instance, you can have a "production" and "dev" context, each with a "host" variable. Then your request string could be http://${host}/foo.

Insomnia is a beautiful desktop application for Windows, Mac and Linux for debugging restful APIs (my personal favourite)

Postman is a Chrome extension for API testing and doing custom http requests. You can save requests for later use, setup different environments (staging, deployment) and collaborate and share requests with others on your team.

HttpRequester for Firefox is similar to Postman.

I like RESTclient. It doesn't format HTML, though (I assume Poster does), so if you get a 500 error you get to dredge through the return text yourself.

Also XHR POSTER with Chrome
I would say has a better UI then Poster.

Update
XHR has been giving me problems. DHC by Restlet for Chrome is pretty nice also.

Found a useful (free) web tool for this that now exists!

https://curlbuilder.com/

Try gURL: http://code.google.com/p/gurl/ This is a simple HTTP-request generator, based on curl

Paw for OS X is pretty nice. $29.99 as of this writing.

Fiddler is a very good tool. You can see history of requests, supports all HTTP verbs, completes the request with necessary headers (like Content-Length). The feature you are looking for is called "Request Builder".

In the interest of trying to keep this list up to date, here is an even better, newer Chrome extension: Advanced REST Client

Out of all the Firefox extensions I tried, HttpRequester is the best tool for me. It is very clear and doesn't lack a feature.

For Chrome, I would recommend Advanced REST client or Postman.

I think Hurl is a great candidate for that?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top