in java/src/main/java/com/alexa/atsapi/ATS.java [75:93]
private static void callATS(ATS atsClient) throws IOException, Exception {
String canonicalQuery = "Action=TopSites&Count=10&CountryCode=" + atsClient.country + "&ResponseGroup=Country";
String uri = AWS_BASE_URL + "?" + canonicalQuery;
System.out.println("Making request to:\n");
System.out.println(uri + "\n");
// Make the Request
String xmlResponse = makeRequest(uri, atsClient.apikey);
// Print out the XML Response
System.out.println("Response:\n");
System.out.println(xmlResponse);
}