This is a continuation of a series on a Rest Agent library I am building for accessing REST apis. The first post is here and and the second is here. So far the only significant operation that we enabled our RestAgent to perform is NavigateTo(). However, for a RestAgent on a mission, going places is only half the […]
As I alluded to in my first post, REST clients really should be driven by hypermedia. So how can our RestAgent class access this hypermedia and its links. Ideally, given a single root URI, I would like to be able to do: Before I talk about the magic that is going on under the covers here, […]