I am trying to set my user agent string in the HttpClient apache object in Java but I cannot find out how to do it.
Please help!
Also I am trying to enable redirects to true but also cannot find this option within the HttpClient object.
Thanks
Andy
|
I am trying to set my user agent string in the HttpClient apache object in Java but I cannot find out how to do it. Please help! Also I am trying to enable redirects to true but also cannot find this option within the HttpClient object. Thanks Andy |
||||
|
|
|
|||||||||||||||||
|
|
With HttpClient 4.0, the following worked for me:
HttpProtocolParams resides in the httpcore JAR file: http://hc.apache.org/httpcomponents-core/download.html |
|||
|
|
|
Use AndroidHttpClient, and pass the user agent as a parameter to newInstance:
There are other good reasons to use AndroidHttpClient instead of the raw HttpClient as well. |
|||
|
|