Reputation: 237
I'm trying to get a tableau server trusted authentication token for authorization. I'm requesting the post method to the tableau server.
https://example.server.name/trusted/username=admin?&target_site=Sales
Is it a corrected way to get the trusted token from the tableau server? or I missing something.
Upvotes: 1
Views: 441
Reputation: 11896
You have to whitelist your trusted server using the tsm authentication command
And the ? is misplaced in the URL. Should be
https://example.server.name/trusted?username=admin&target_site=Sales
Upvotes: 1