私は認証サーバーに投稿メッセージを送信しようとしていますが、私はpostforobjectを使用しています。 「:401ヌルorg.springframework.web.client.HttpClientErrorException 『エラーRestTemplate postForObject return HttpClientErrorException:401 null
RestTemplate rest = new RestTemplate();
String responseEntity;
String uri = "http://...";
responseEntity = rest.postForObject(uri, null, String.class);
System.out.println(responseEntity);
また、私は、
responseEntity = rest.postForObject(uri, "", String.class);
同じ結果を試みたが、私はプログラムを実行すると、私は、』スレッドの例外」メインは取得していますそれはうまくいかなかった。
それは enter image description here
任意のアイデアを作品私はシンプルレストクライアントを使用していますか?シンプルなRESTクライアントは、(再)Chromeのクッキーを使用しています。
nullの代わりに空の文字列を試しましたか? –
はい私は試しました。それは動作しませんでした – Sefa
どのように認証パラメータを送信していますか? – Coder