public Charset charset() {
ContentType contentType = ContentType.of(this);
if (contentType == null || contentType.charset() == null) {
return Charsets.ISO_8859_1;
}
return contentType.charset();
}
public Request addHeader(String name, String value) {
headers.add(name, value);
return this;