Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using DefaultHttpClient to make an http connection. I [think] we can set the preferred locale in the http headers [http accept-language] when making a connection, which the server can check and send back content in a matching language (if it wants).

Anyone know if this is possible, or how to go about doing this with DefaultHttpClient?

Thanks

share|improve this question
DefaultHttpClient? - to which package/lib does it belong? – Ralph Jan 11 '11 at 16:12
@Ralph: as per OP's question history, it's likely Android. – BalusC Jan 11 '11 at 16:26

1 Answer

up vote 5 down vote accepted

You have to add your header to HttpRequest object

HttpClient client = new DefaultHttpClient();
HttpPost request = new HttpPost(URL);
request.addHeader("Accept-Language", "en");
HttpResponse response = client.execute(request);
share|improve this answer
Ah awesome that makes sense, thank you. – user291701 Jan 11 '11 at 16:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.