29

以下から JSON データを取得したい: https://git.eclipse.org/r/#/c/11376/

リクエスト URL:https://git.eclipse.org/r/gerrit/rpc/ChangeDetailService

リクエスト方法:POST

リクエスト ヘッダー:

Accept:application/json

Content-Type:application/json; charset=UTF-8

リクエスト ペイロード:

{"jsonrpc":"2.0","method":"changeDetail","params":[{"id":11376}],"id":1}

私はすでにこの回答を試しましたが、取得してい400 BAD REQUESTます。

誰かがこれを整理するのを手伝ってくれますか?

ありがとう。

4

2 に答える 2

42

次のコードは私にとってはうまくいきます。

//escape the double quotes in json string
String payload="{\"jsonrpc\":\"2.0\",\"method\":\"changeDetail\",\"params\":[{\"id\":11376}],\"id\":2}";
String requestUrl="https://git.eclipse.org/r/gerrit/rpc/ChangeDetailService";
sendPostRequest(requestUrl, payload);

メソッドの実装:

public static String sendPostRequest(String requestUrl, String payload) {
    try {
        URL url = new URL(requestUrl);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();

        connection.setDoInput(true);
        connection.setDoOutput(true);
        connection.setRequestMethod("POST");
        connection.setRequestProperty("Accept", "application/json");
        connection.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
        OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream(), "UTF-8");
        writer.write(payload);
        writer.close();
        BufferedReader br = new BufferedReader(new InputStreamReader(connection.getInputStream()));
        StringBuffer jsonString = new StringBuffer();
        String line;
        while ((line = br.readLine()) != null) {
                jsonString.append(line);
        }
        br.close();
        connection.disconnect();
        return jsonString.toString();
    } catch (Exception e) {
            throw new RuntimeException(e.getMessage());
    }

}
于 2013-03-23T18:05:11.293 に答える
0

残りのクライアントで試しました。

ヘッダー:

  • POST /r/gerrit/rpc/ChangeDetailService HTTP/1.1
  • ホスト: git.eclipse.org
  • ユーザーエージェント: Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0
  • 受け入れる: アプリケーション/json
  • Accept-Language: null
  • Accept-Encoding: gzip、deflate、sdch
  • 受け入れ文字セット: ISO-8859-1,utf-8;q=0.7,*;q=0.3
  • コンテンツ タイプ: アプリケーション/json; 文字セット=UTF-8
  • コンテンツの長さ: 73
  • 接続: キープアライブ

それは正常に動作します。いいボディで200OKリトリーブ。

リクエストにステータス コードを設定するのはなぜですか? およびAccept:application/json,application/json,application/jsonrequest を使用した複数の宣言「Accept 」。声明だけで十分です。

于 2013-03-22T16:48:41.963 に答える