We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given I provide non-IFD URL to ServiceClient constructor:
ServiceClient serviceClient = new(new Uri("https://crm.example.com/org"), app.CustomTokenProvider, logger: Logger); WhoAmIResponse resp = (WhoAmIResponse)serviceClient.Execute(new WhoAmIRequest());
/adfs/oauth2/token
The request contains proper Authorization bearer token, however the request failed to append /org after host part, thus failing the request.
/org
I'v seen code account for IFD style and non-IFD style URLs:
PowerPlatform-DataverseServiceClient/src/GeneralTools/DataverseClient/Client/Utils/Utils.cs
Lines 103 to 118 in 447f9dc
So I thought it should work with non-IFD urls.
The text was updated successfully, but these errors were encountered:
Any updates on this issue?
Sorry, something went wrong.
No branches or pull requests
Given I provide non-IFD URL to ServiceClient constructor:
/adfs/oauth2/token
The request contains proper Authorization bearer token, however the request failed to append
/org
after host part, thus failing the request.I'v seen code account for IFD style and non-IFD style URLs:
PowerPlatform-DataverseServiceClient/src/GeneralTools/DataverseClient/Client/Utils/Utils.cs
Lines 103 to 118 in 447f9dc
So I thought it should work with non-IFD urls.
The text was updated successfully, but these errors were encountered: