IS_EV
IS_EV

Reputation: 1048

Restful Web service - specifications

what is meant by specifications for Restful web service. I am new to Restful web services and I created a simple Rest web service with a 'Get' method/operation. The web service was created using jersey . I am asked for the specification for this web service and I am not sure what should be the correct answer.

Upvotes: 0

Views: 2336

Answers (1)

laurent
laurent

Reputation: 90776

It means you need to describe what calls are available and what type of objects they can receive or return. For some examples, have a look at the API documentation of major websites like the Twitter API Reference, Facebook Graph API, etc.

Upvotes: 1

Related Questions