Amadeus api返回401 client Credentials are invalid
。请检查下面的代码。我在凭证字串中加入了符号[
和]
。
// here xxxxx are placeholders for real credentials (strings)
Amadeus amadeus = Amadeus.builder("[xxxxxx]","[xxxxxx]")
.setHostname("test").setHost("test.api.amadeus.com").setSsl(true).setLogLevel("debug").build();
//HttpHandler sh = new HttpHandler();
//FlightDestination[] des = sh.FlightDest();
//id = sh.id();
try {
FlightDestination[] destination1 = amadeus.shopping.flightDestinations.get(Params.with("origin", "LON"));
id = destination1[0].getOrigin();
name = destination1[0].getDestination();
email = destination1[0].getType();
}catch (ClientException e)
{
id=e.getMessage();
}catch (NetworkException e)
{
id = e.getMessage();
}catch (NotFoundException e)
{
id = e.getMessage();
}catch (ServerException e)
{
id = e.getMessage();
}catch (ParserException e)
{
id = e.getMessage();
}catch (ResponseException e)
{
id = e.getMessage();
}
答案 0 :(得分:1)
您不需要 [] ,而需要将它们替换为遵循this guide的API_KEY和API_SECRET。
Amadeus amadeus = Amadeus.builder("API_KEY", "API_SECRET").build();
/* Find cheapest destinations from London */
FlightDestination[] flightDestinations = amadeus.shopping.flightDestinations.get(Params.with("origin", "LON"));
System.out.println(flightDestinations[0]);