0

我正在尝试从 Flipkart 获取订单,现在我正在使用订单的搜索 API,我们可以在其上提供 fromDate toDate 等进行过滤,但是当我在生产环境中运行该 API 时,即:

https://api.flipkart.net/sellers/v2/orders/search

它给了我以下错误:-

{
  "errors": [
    {
      "type": "SERVER_ERROR",
      "code": "DEPENDENT_SYSTEM_CALL_FAILED",
      "message": "A call to dependent system failed. Please retry after some time.",
      "params": null
    }
  ]
}

我不知道我在哪里做错了,或者他们在服务器端做了任何改进,这就是错误来的原因。

请帮我解决这个问题。任何帮助,将不胜感激。

谢谢!

4

1 回答 1

0

我在下面添加了代码

request.AddJsonBody(yourobject);

其中 yourobject 是您已初始化的自定义对象。请求是 RestSharp 请求。

我已经异步调用请求如下

client.ExecuteAsync(request, response => {
            MessageBox.Show(response.Content);
        }); 
于 2017-02-17T19:06:15.567 回答