I have question regarding RESTful resources similar to this other question.
We're also developing an iphone app that will access the REST services but one of the concerns is that the first screen makes a few calls to the service and that it should be just one (A dto of the resources).
I'm trying to keep the service as RESTful as possible so I was wondering how to access it cleaning.
I was thinking of considering the iphone (or any other device) as a resource and that this dto is a property. The URI would be something like this:
example.com/rest/Device/iphone/HomeScreen
Would something like this be acceptable or is there a better solution?
Thanks Tony