So I am trying to follow this section here: https://learn.microsoft.com/en-us/power-apps/developer/data-platform/org-service/quick-start-org-service-console-app
Whether I use a connection string like:
OAuth:
"AuthType=OAuth;UserName={_userName};Password={_password};ClientId={_clientId};ClientSecret={_clientSecret};
Authority=https://login.microsoftonline.com/{_tenantId};Url={_url};RedirectUri=http://localhost;";
or ClientSecret:
$"AuthType=ClientSecret;ClientId={_clientId};ClientSecret={_clientSecret};
Authority=https://login.microsoftonline.com/{_tenantId};Url={_url};";
I check my Entra settings and followed what I thought was required for 'ClientSecret'
as well as the secret got generated:
I even added my proxy user as an owner:
I have no idea what is going wrong as it says anonymous and it's clearly I am using a dedicated application but is there something on dataverse that also needs to be set up? I have the user I am invoking there already setup but I am not sure if you can setup the Entra Auth setting anywhere.
Any help is much appreciated.