Forum Discussion

Harineeeeeeee's avatar
2 years ago
Solved

Connecting to dataverse from PowerBI using client id , client secret

Hi ,

 

I am trying to connect to dataverse from PowerBI, I have only this info tenant id, client id, client secret and env url based on the info I have wrote a power query as below, but this is not giving the desired dataverse tables

rather data format error : we found extra characters at the end of the json output I want the output in tables in PowerBI 

 

let

Tenantid =“xx",
ClientID = "xx”
ClientSecret = “xx",
Authority = *https://login.microsoftonline.com/"& TenantID &"/oauth2/token*
headers = [#"Accept"="application/json*, #"Content-Type"="application/x-www-form-urlencoded*],
postBody = [grant_type ="client_credentials"
Client_id = “xx”,
client_secret = "xxx”,
#"Converted to Table" = Record. ToTable(postBody),
response = Json. Document (Web. Contents (Authority))
In
response

 

 

can some please assist?

thanks in advance

7 Replies