Skip to content

Commit bf8a2b5

Browse files
committed
links
1 parent 9b53623 commit bf8a2b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/batch/batch-aad-auth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ To authenticate with integrated authentication from Batch .NET:
221221
private const string RedirectUri = "https://<redirect-uri>";
222222
```
223223

224-
1. Write a callback method to acquire the authentication token from Azure AD. The following **ConfidentialClientApplicationBuilder.Create** callback method calls MSAL to authenticate a user who's interacting with the application. The **IConfidentialClientApplication.AcquireTokenByAuthorizationCode** method provided by MSAL prompts the user for their credentials. The application proceeds once the user provides the credentials, unless the app has already cached the credentials.
224+
1. Write a callback method to acquire the authentication token from Azure AD. The following [ConfidentialClientApplicationBuilder.Create](/dotnet/api/microsoft.identity.client.confidentialclientapplicationbuilder.create) method calls MSAL to authenticate a user who's interacting with the application. The MSAL [IConfidentialClientApplication.AcquireTokenByAuthorizationCode](/dotnet/api/microsoft.identity.client.iconfidentialclientapplication.acquiretokenbyauthorizationcode) method prompts the user for their credentials. The application proceeds once the user provides the credentials, unless the app has already cached the credentials.
225225

226226
```csharp
227227
public IConfidentialClientApplication CreateApplication()
@@ -295,7 +295,7 @@ To authenticate with a service principal from Batch .NET:
295295
private const string ClientKey = "<secret-key>";
296296
```
297297

298-
1. Write a callback method to acquire the authentication token from Azure AD. The following **ConfidentialClientApplicationBuilder.Create** callback method calls MSAL for unattended authentication:
298+
1. Write a callback method to acquire the authentication token from Azure AD. The following [ConfidentialClientApplicationBuilder.Create](/dotnet/api/microsoft.identity.client.confidentialclientapplicationbuilder.create) method calls MSAL for unattended authentication:
299299

300300
```csharp
301301
public IConfidentialClientApplication CreateApplication()

0 commit comments

Comments
 (0)