Tableau Server, Personal Access Token

Hi,

We have been trying to use the personal access token to authenticate towards our tableau server. We could not get it to work, but realized that the access token and site id in the Tableau Server node is in fact not the personal access token, but rather the authentication token. Please add this third option in the Tableau Server Node for authentication

Access used by KNIME with access token it done by the following steps:
Submit POST request to tableau server and read result:
<tsRequest>
<credentials name=“TestUser” password=“12345” >
<site contentUrl=“MySite” />
</credentials>
</tsRequest>

Response:
<tsResponse xmlns=“http://tableau.com/api” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=“http://tableau.com/api http://tableau.com/api/ts-api-3.9.xsd”>
<credentials token=“8NQp4N3RQKJFNVLKJNFV DFKJ”>
<site id=“d3d6d5cd-730a-4b87-b972-983d85a56b58” contentUrl=“MySite”/>
<user id=“8611c916-8aec-43e6-93dd-687ef6c0dc08”/>
</credentials>
</tsResponse>

The Tableau Server node uses the above site id and the credentials token to authenticate.

The person access token uses this call to authenticate which is much easier to use:
<tsRequest>
<credentials
personalAccessTokenName=“MY_TOKEN_NAME” personalAccessTokenSecret=“qlE1g9MMh9vbrjjg==:rZGHhPpP2yUW1kfn4tjg8” >
<site contentUrl=“MarketingTeam” />
</credentials>
</tsRequest>

Hi @mmcmcmc -

We have a ticket for this one also (AP-15006). Again, I can’t give a firm date for when this might be released, but your feature request has been noted on the ticket. Thanks!

1 Like

Thank you for the prompt reply! We succeeded in running a POST request with the last syntax which then returns an authentication token and site id that can then be used in the send to tableau server node

1 Like

Hi @mmcmcmc,

Good to hear that you found a workaround!

I also created a workflow that makes use of the REST nodes to login with the Personal Access Token. It’s a bit cumbersome but it works. I uploaded it to the HUB if anyone is interested: Tableau_Personal_Access_Token_auth_workaround – KNIME Hub.

The feature for the node was implemented recently. The code has been merged already and only needs to be verified internally. The feature is already in the nightly (Nightly Build | KNIME) and will (most likely) be released with 4.4.0 in the Summer.

I would be glad if you could try it out in the nightly and give feedback.

3 Likes

Great development. It is working exactly as it should. Thanks!

2 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.