Java HttpClient is not returning latest data from API

339 Views Asked by At

I'm running this code in Idea 2020.1 with Java 11 (of course!)

 String gitApiPrUrl = "https://bitbucket.myserver.com/rest/api/1.0/projects/PRJ/repos/my-repo/pull-requests";

        HttpRequest request = HttpRequest.newBuilder()
                .uri(new URI(gitApiPrUrl))
                .headers("Cache-Control", "no-store")
                .GET()
                .build();

        HttpResponse<String> response = HttpClient.newBuilder()
                .authenticator(authenticator())
                .build()
                .send(request, HttpResponse.BodyHandlers.ofString());

        System.out.println(response.body());

Response:

{"size":0,"limit":25,"isLastPage":true,"values":[],"start":0}

java.net.http.HttpHeaders@f406e94c { {cache-control=[no-cache, no-transform], content-type=[application/json;charset=UTF-8], date=[Mon, 02 May 2022 08:47:34 GMT], set-cookie=[BIGipServerBITBUCKET-POOL-7990=606120128.13855.0000; path=/; Httponly; Secure], transfer-encoding=[chunked], vary=[accept-encoding,x-auserid,cookie,x-ausername,accept-encoding], x-arequestid=[*2J2Q3Kx527x646575x15], x-asen=[SEN-8378849], x-content-type-options=[nosniff]} }

Response in Postman

{
    "size": 1,
    "limit": 25,
    "isLastPage": true,
    "values": [
        {
            "id": 12,
            "version": 0, ...
0

There are 0 best solutions below