Im making api call with postman on url:
https://cex.io/api/order_book/BTC/USD
plain GET no headers no params no nothing. But the same with java:
RestTemplate rt = new RestTemplate();
rt.getForObject("https://cex.io/api/order_book/BTC/USD", String.class);
gets me 403. where is the problem?