Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in BI by (11.1k points)
How can I connect Azure Active directory to the Tableau Server

1 Answer

0 votes
by (22.5k points)

Sign in to the URL

Find the request below for the graph explorer

PATCH https://graph.microsoft.com/beta/servicePrincipals/<object-id of the service principal>

{
  "loginUrl": "https://azure.signtest.link"
}

enter image description here Object Id is required and it is found in Azure AD portal 

portal -> Enterprise Application -> find your Tableau Server -> get the Object ID

enter image description here 

By using the Power shell set Identifier and Reply Url

$Identifiers = @(
    "http://www.tableau.com/products/server",
    "https://azure.idtest.link"
)
$ReplyUrls = @(
    "https://azure.rptest.link/wg/saml/SSO/index.html"
)
Set-AzureADApplication -ObjectId <object-id of the AD App> -IdentifierUris $Identifiers -ReplyUrls $ReplyUrls 

 portal -> App registrations -> find your Tableau Server 

enter image description here

enter image description here

enter image description here

enter image description here

If you want to learn Tableau and get certified,then check out the Tableau course from Intellipaat 

Browse Categories

...