HttpClient.UseWindowsAuthentication(SecretText, SecretText [, SecretText]) Method
Version: Available or changed with runtime version 12.0.
Sets the HttpClient credentials to use the specified network credentials for Windows authentication. If this method is invoked after any HTTP request has started; a runtime error occurs.
Note
This method is supported only in Business Central on-premises.
Syntax
[Result := ] HttpClient.UseWindowsAuthentication(UserName: SecretText, Password: SecretText [, Domain: SecretText])
Parameters
HttpClient
Type: HttpClient
An instance of the HttpClient data type.
UserName
Type: SecretText
The Windows user name.
Password
Type: SecretText
The password.
[Optional] Domain
Type: SecretText
The user's domain.
Return Value
[Optional] Result
Type: Boolean
true if the operation was successful; otherwise false. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.
Related information
HttpClient Data Type
Getting Started with AL
Developing Extensions