itgenobr001:找不到客户端。在精确在线比利时的数据访问点上

时间:2017-03-07 11:51:30

标签: exact-online invantive-query-tool invantive-dap

我们刚刚使用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错误?

1 个答案:

答案 0 :(得分:3)

实际上解决起来非常简单:提到的“客户端”是应用程序。我需要将Exact Online应用程序的客户端ID添加到我的连接字符串,因为数据访问点在使用生产许可证时需要客户端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中的“我的应用”页面中所指定的那样:

<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" />