I'm learning how to implement APIs in angular and I came across a term: "REST API". I did some research and I was unsure if REST API was different from the other APIs I was messing around with. I created a program using the OMDBApi, which is just a way to fetch movie data and I just fetched the json data with $http.get
requests like "http://www.omdbapi.com/?t=" + title + "&y=&plot=short&r=json"
.
Would I fetch data the same way using a REST api? I was slightly confused because on the site I was looking at they emphasized a lot that it was a "REST API" and the URI they provided looked like this: http://myhost.com:8085/rest/api/latest/
. This URI is a little bit different from the others I've come across. Can someone please explain how I would use this API?
Reference: https://developer.atlassian.com/bamboodev/rest-apis/bamboo-rest-resources