From 2e2a637758b0780d2205a2da7746e30b40aa4b44 Mon Sep 17 00:00:00 2001 From: rmca14 <10053959+rmca14@users.noreply.github.com> Date: Tue, 23 Jun 2026 17:31:18 -0700 Subject: [PATCH] Test PR - do not merge --- msal-java-articles/advanced/authorization-code-url-builder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msal-java-articles/advanced/authorization-code-url-builder.md b/msal-java-articles/advanced/authorization-code-url-builder.md index f253bbe..742f5b6 100644 --- a/msal-java-articles/advanced/authorization-code-url-builder.md +++ b/msal-java-articles/advanced/authorization-code-url-builder.md @@ -15,7 +15,7 @@ ms.topic: concept-article # Authorization code URL builder -When performing Oauth2 authorization code flow, the first step is to direct the user to the authorization endpoint where they will authenticate and the identity provider will respond with an authentication code. The authentication code can then be used to redeem a token by calling MSALs [`PublicClientApplication.acquireToken(AuthorizationCodeParameters)`](xref:com.microsoft.aad.msal4j.AbstractClientApplicationBase.acquireToken(com.microsoft.aad.msal4j.AuthorizationCodeParameters)) or [`ConfidentialClientApplication.acquireToken(AuthorizationCodeParameters)`](xref:com.microsoft.aad.msal4j.AbstractClientApplicationBase.acquireToken(com.microsoft.aad.msal4j.AuthorizationCodeParameters)). +When performing Oauth2 authorization code flow, the first step is to direct the user to the authorization endpoint where they will authenticate and the identity provider will respond with an authentication code. The authentication code can then be used to redeem a token by calling MSALs [`PublicClientApplication.acquireToken(AuthorizationCodeParameters)`](xref:com.microsoft.aad.msal4j.AbstractClientApplicationBase.acquireToken(com.microsoft.aad.msal4j.AuthorizationCodeParameters)) or [`ConfidentialClientApplication.acquireToken(AuthorizationCodeParameters)`](xref:com.microsoft.aad.msal4j.AbstractClientApplicationBase.acquireToken(com.microsoft.aad.msal4j.AuthorizationCodeParameters)). test PR ## Authorization URL builder