直到第四天,我的代码都可以正常工作,现在这是我尝试使用SeatMap端点https://api.test.sabre.com/v3.0.0/book/flights/seatmaps?mode=seatmap来测试应用程序时得到的唯一响应

{
   "status":"Unknown",
   "type":"Application",
   "errorCode":"ERR.RAF.APPLICATION",
   "timeStamp":"2016-01-08T12:42:59+00:00",
   "message":"{
       \"EnhancedSeatMapRS\":{
           \"ApplicationResults\":{
                \"status\":\"NotProcessed\",\"Error\":   [{
                        \"type\":\"Application\",\"timeStamp\":\"2016-01-08T06:42:59.623-    06:00\",\"SystemSpecificResults\":[{\"timeStamp\":\"2016-01-08T06:42:59.623-06:00\",\"Message\":

   [{\"code\":\"700001\",\"content\":\"Internal service     error\"}]}]}]}},\"Links\":
    [{\"rel\":\"self\",\"href\":\"https://api.test.sabre.com/v3.0.0/book/flight    s/seatmaps?mode=seatmaps\"},    {\"rel\":\"linkTemplate\",\"href\":\"https://api.test.sabre.com/<version>/b    ook/flights/seatmaps?mode=<mode>\"}]}"
}


我无法从Saber找到有关此错误代码的任何信息。有没有其他人看到此问题,以及如何解决?

最佳答案

那可以和mode = seatmap url参数相关吗?

根据文档,可接受的值似乎是复数:
模式=座位图

https://developer.sabre.com/docs/read/rest_apis/air/search/seat_map

您始终可以使用凭证使用API​​资源管理器来测试服务参数:

https://developer.sabre.com/io-docs

09-11 17:45