import org.slf4j.LoggerFactory;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
+import org.springframework.http.ReactiveHttpInputMessage;
+import org.springframework.web.reactive.function.BodyExtractor;
+import org.springframework.web.reactive.function.BodyExtractor.Context;
import org.springframework.web.reactive.function.client.ClientResponse;
import reactor.core.publisher.Mono;
public static GraphApiException create(ClientResponse response)
{
- Mono<String> body =
- response
- .bodyToMono(String.class);
- Mono<GraphApiException> e = body
- .map(str -> create(response.statusCode(), null, str.getBytes()));
+ HttpStatus status = response.statusCode();
+ HttpHeaders headers = response.headers().asHttpHeaders();
+ Mono<String> body = response.bodyToMono(String.class);
+ return create(status , headers, body.block().getBytes());
}
public static GraphApiException create(