4

我们有一种情况,我们希望从在线 Quickbooks 返回 XML 中的错误消息,但是,我们从 API 返回以下消息,状态代码为 400。

<html>
<head>
  <title>JBoss Web/2.1.12.GA-patch-03 - Error report</title>
  <style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> 
</head>

<body>
  <h1>HTTP Status 400 - message=No destination found for given partition key; errorCode=007001; statusCode=400</h1>
  <HR size="1" noshade="noshade">
    <p>
      <b>type</b> Status report
    </p>
    <p>
      <b>message</b> <u>message=No destination found for given partition key; errorCode=007001; statusCode=400</u>
    </p>
    <p>
      <b>description</b> <u>The request sent by the client was syntactically incorrect (message=No destination found for given partition key; errorCode=007001; statusCode=400).</u>
    </p>
    <HR size="1" noshade="noshade">
    <h3>JBoss Web/2.1.12.GA-patch-03</h3>
</body>
</html>

客户的试用帐户似乎已过期。我们的代码是否应该处理这种类型的错误,或者这是 Intuit 的问题,因为它们没有返回 XML 消息?

4

1 回答 1

2

如果您提出请求并没有错误地收到此响应,则可能是您在 Quickbooks 上的帐户不存在。

我遇到了这个问题。当我通过 oauth 流程时。我得到正确的 oauth 密钥和秘密。但是当我进行 api 调用时,也会出现同样的错误。我发现我的帐户(用于进行 API 调用)在 Quickbooks 中不存在。使用其他现有帐户可以正常工作。

希望这有帮助。

于 2013-09-11T03:22:00.143 回答