|
Below are tools you may find handy when testing out the features that the API offers. Both of them are very similar in functionality, so no matter which one you choose you should be able to quickly test web resources. cURLcURL is a command line client that provides an interface to all the functionalities of the HTTP protocol (and many other features). The following command gets the project with id 1: $ curl -H 'X-tinyPM-token: 8709725e52ecec50e4ece9e8f718c355' http://localhost:8080/tinypm/api/project/1 This example shows how to update the task: $ curl -H 'X-tinyPM-token: 8709725e52ecec50e4ece9e8f718c355' -H 'Content-Type: application/xml' -d '<task>...</task>' -X PUT http://localhost:8080/tinypm/api/task/17 switches: PosterPoster is a Firefox plugin which provides easy and intuitive interaction with HTTP resources.
|


