3

我们刚刚与https://ecotaksen.be一起上线。Exact 上的查询和更新运行良好,但在安装生产许可证后出现错误itgenobr001: Client not found.

我的数据容器规范是:

<database order="1" 
   creationDate="2016-04-13T09:11:03.3584276+02:00"
   provider="ExactOnlineAll" 
   connectionString="apiUrl=https://start.exactonline.be" 
/>

使用具有相同凭据和连接字符串的查询工具连接到 Exact Online 工作正常。

我该如何解决这个itgenobr001错误?

4

1 回答 1

3

实际上解决起来很简单:所指的“客户端”就是应用程序。我需要将 Exact Online 应用程序的客户端 ID 添加到我的连接字符串中,因为 Data Access Point 在使用生产许可证时需要客户端 ID。

生成的数据容器规范:

<database order="1" creationDate="2016-04-13T09:11:03.3584276+02:00" provider="ExactOnlineAll"
 connectionString="apiUrl=https://start.exactonline.be;api-client-id=MYID" />

之后,我得到了一个itgenobr001: Invalid authorization request., 并且需要添加在 Exact Online 的我的应用程序页面中指定的重定向 url:

<database order="1" creationDate="2016-04-13T09:11:03.3584276+02:00" provider="ExactOnlineAll" 
connectionString="apiUrl=https://start.exactonline.be;api-client-id=MYID;apiredirecturl=https://ecotaksen.be" />
于 2017-03-07T11:54:57.257 回答