这里Waypoint Sequence API

时间:2019-01-24 08:27:07

标签: here-api

自昨天23/01/2019起,使用HERE Waypoint Sequence API时出现以下错误。

  

生成响应时出现技术错误。请联系TCS。错误ID:de4aae0d-da0c-4cfe-b23c-29eb9ede7dd7

我没有更多细节,因为这就是我的全部答复。 我与往常一样使用相同的app_id和应用程序代码,而这只是在没有警告的情况下开始发生的。

我正在使用以下URL进行ajax调用: https://wse.cit.api.here.com/2/findsequence.json

该问题也是间歇性的,有时响应会生成结果,而其他90%的问题会生成错误。我不知所措,因为我无法在Here 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]);
    }
  }
});

1 个答案:

答案 0 :(得分:0)

HERE Waypoint Sequence API正在使用背景中的矩阵路由服务来计算所有路线。该错误消息指向矩阵路由本身的超时。在这种情况下,请重新发送请求。我们将尽快更新有关错误代码的文档。