List<String> al = new ArrayList<String();
List<String> al = new LinkedList<String>();
ArrayList<String> al = new ArrayList<String>();
LinkedList<String> al = new LinkedList<String>();
// Создал url переменные, которые требует вк API
Map<String, String> uriVariables = new HashMap<String, String>();
uriVariables.put("client_id", "8*****2"); // Просто скрыл id (он написан верно)
uriVariables.put("display", "page");
uriVariables.put("redirect_uri", "http://vk.com");
uriVariables.put("scope", "friends");
uriVariables.put("response_type", "token");
uriVariables.put("v", "5.131");
// Создал headers
final HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
final HttpEntity<String> entity = new HttpEntity<String>(headers);
// Вызвал метод, отправляющий запрос (поменял getforobject на exchange)
RestTemplate restTemplate = new RestTemplate();
ResponseEntity<Map> response = restTemplate.exchange("https://oauth.vk.com/authorize", HttpMethod.GET, entity, Map.class, uriVariables);
//Вывод в консоль ответа
System.out.println(response.getBody());
Но при запуске контейнера возникла ошибка: