Does the android platform impose any restrictions on RESTful web service calls? Is there anything a developer should be aware of or is it simply a case of calling a given URL and handling the responses?
Do I need to use a framework, something like RESTlet?
I have used REST (yahoo developer APIs) a few times, but haven’t done so from android, intersted to know if there is anything I need to be cautious of.
Regards
In my opinion a REST call is nothing special.
You can use the builtin HttpClient from Apache (in my opinion it’s more reliable as the java implementation) to fetch the data from the REST endpoint.
But it depends what data you are passing around (XML, JSON, …). Is security required?
Take the following points into account:
Hope this helps you a bit 😉