1

我在我的 springboot (v1.4.0.RELEASE) 项目中使用 OAuth 授权进行了以下测试。

@Test(expected = ResourceAccessException.class)
public void accessWithUnknownClientID() throws IOException {

        ResponseEntity<String> response = new TestRestTemplate("trusted-app", "wrongpass")
                .postForEntity("http://localhost:" + port + "/oauth/token?client_id=trusted-app&grant_type=client_credentials", null, String.class);

}

在我添加 aws-java-sdk 之前,测试工作正常,在这种情况下,调用返回 401 未经授权,而不是抛出 ResourceAccessException。

4

0 回答 0