Tableau Web数据连接器给出错误

时间:2016-11-28 18:56:28

标签: tableau

我正在尝试使用tableau Web数据连接器从我们的自定义API中获取所有数据并在仪表板中显示。但我收到以下错误。

The version of Tableau that you are using cannot use the web data connector that you are trying to access. The connector requires at least version '2.1.1' of the web data connector API.

目前,我正在使用Tableau 10.0.1。这是截图。 enter image description here 我很感激这里的任何帮助。

1 个答案:

答案 0 :(得分:1)

这意味着您尝试访问的连接器(earthquakeMultitable)正在尝试使用与Tableau Desktop版本不兼容的WDC API版本。

在这种情况下,您使用的是WDC 2.1 API和Tableau Desktop 10.0。 Tableau 10.0只能使用版本1.1和2.0。这里有一个查找表:http://tableau.github.io/webdataconnector/docs/wdc_library_versions

为了解决此错误,您可以:

  1. 升级到Tableau 10.1。
  2. 让您的WDC使用最新的WDC 2.0 API:https://connectors.tableau.com/libs/tableauwdc-2.0.latest.js。在earthquakeMultitable.html文件中,您将找到包含https://connectors.tableau.com/libs/tableauwdc-2.1.1.js的包含脚本,因此您只需要将该行更新为指向2.0.latest.js。
  3. 您将在Github上找到的默认版本始终是SDK的最新版本(在这种情况下,它目前是2.1 SDK)。如果您想获得2.0 SDK,可以在此处找到它:https://github.com/tableau/webdataconnector/releases/tag/v2.0.1