Reputation: 3061
I am currently writing a Android application. I need to connect to a internet web server, send username/password credentials and accept cookies from the server for use for subsequent requests to the same server.
Do you know of a HTTP client class or anything I can use in the SDK that currently supports this?
Upvotes: 1
Views: 631
Reputation: 4122
There is Resty and an Android version available on https://github.com/mravenel/Resty (DISCLAIMER: I'm the author)
Upvotes: 2
Reputation: 128428
DefaultHttpclient and HttpClient class are already there. You can use either one of this.
Upvotes: 6