这是create方法的源码:
public static RequestBody create(MediaType contentType, String content) {
Charset charset = Util.UTF_8;
if (contentType != null) {
charset = contentType.charset();
if (charset == null) {
charset = Util.UTF_8;
contentType = MediaType.parse(contentType + "; charset=utf-8");
}
}
byte[] bytes = content.getBytes(charset);
return create(contentType, bytes);
}
这个content是类似于“a=88&b=99”这样的字符串吗?
Chrome 用の http デバッグ プラグインである postman を使用することをお勧めします。okhttp コードを直接生成できます。
これは、私自身のデバッグ中に postman によって生成された okhttp Java コードです。