Given a REST resource, Is there any tool or method by which I could explore the operations and additional child resources that are part of the given REST resource.
Thanks,
Vishnu.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The OPTIONS method is intended to allow the server to tell you what you can do with a resource. The only “standard” behaviour that I am aware of is that a Allow header should be returned that says which HTTP methods are allowed. The response body could be anything, as defined by the server, but could certainly include links to child resources.
You will likely not find too many implementations of OPTIONS with response bodies with links because generally people include the links directly in the representations that are returned by the GET.