I am checking out the class org.apache.http.auth. Any more reference or example if anyone has?
|
|
I've not met that particular package before, but it says it's for client-side HTTP authentication, which I've been able to do on Android using the
Obviously your getPasswordAuthentication() should probably do something more intelligent than returning a constant. If you're trying to make a request with a body (e.g.
|
|||||||||||
|
|
For my Android projects I've used the Base64 library from here: It's a very extensive library and so far I've had no problems with it. |
|||
|
|
|
You can manually insert http header to request:
|
||||
|
|
|
Manual method works well with import android.util.Base64, but be sure to set Base64.NO_WRAP on calling encode:
|
|||
|
|
|
For me, it worked:
|
|||||||||||||
|
protected by tchrist Sep 21 '12 at 12:42
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

