我需要使用 Jsoup 将原始正文传递给 POST 请求:
final Connection connect = Jsoup.connect(url);
connect.method(Connection.Method.POST);
String rawBody = // a JSON string representing JSON-RPC call
// fails here "Must supply an even number of key value pairs"
connect.data(rawBody);
final Connection.Response response = connect.execute();
据我了解,它需要对键,值。有没有办法通过一个原始的身体?
PS 我已经有代码通过 HTTP 发布HttpURLConnection
并想升级到使用 Jsoup 而不是相对低级的代码。