这里航点顺序API

问题描述 投票:-1回答:1

从昨天开始23/01/2019我开始使用HERE航点顺序API时收到以下错误。

同时产生技术错误的响应。请联系TCS。错误ID:de4aae0d-da0c-4cfe-b23c-29eb9ede7dd7

我没有了细节,因为这是所有的反应给我。我使用的是相同的APP_ID和应用程序代码一如既往,这只是开始无预警发生。

我使用Ajax调用使用这个网址:https://wse.cit.api.here.com/2/findsequence.json

这个问题也是间歇的和有时响应生成结果和其他90%它生成的错误。我很茫然,因为我无法找到在这里API FAQ网站任何内容。

下面是Ajax调用的代码片段:

$.ajax({
  url: 'https://wse.cit.api.here.com/2/findsequence.json',
  type: 'GET',
  dataType: 'jsonp',
  jsonp: 'jsonCallback',
  data: request,
  success: function(response) {
    if (response.errors.length == 0) {
      //use response to build route order html
    } else {
      $('.packageError').append(response.errors[0]);
    }
  }
});
here-api
1个回答
0
投票

在这里航点序列API在底色使用Matrix路由服务来计算所有路由。该错误消息指出,从矩阵路由本身超时。在这种情况下,请重新发送请求。我们将更新有关的错误代码不久的文档。

© www.soinside.com 2019 - 2024. All rights reserved.