- 
                Notifications
    
You must be signed in to change notification settings  - Fork 2.7k
 
Open
Labels
bug-unconfirmedA reported bug that needs to be investigated and confirmedA reported bug that needs to be investigated and confirmedconfidential-clientIssues regarding ConfidentialClientApplicationsIssues regarding ConfidentialClientApplicationsmsal-nodeRelated to msal-node packageRelated to msal-node packagequestionCustomer is asking for a clarification, use case or information.Customer is asking for a clarification, use case or information.
Description
Core Library
MSAL Node (@azure/msal-node)
Core Library Version
3.6.0
Wrapper Library
Not Applicable
Wrapper Library Version
None
Public or Confidential Client?
Confidential
Description
When using
const cca = new ConfidentialClientApplication({
      auth: {
        clientId: authConfig.clientId as string,
        authority: `https://login.microsoftonline.com/${authConfig.tenantId || 'botframework.com'}`,
        clientSecret: authConfig.clientSecret
      },
      system: this.sysOptions
    })
    const token = await cca.acquireTokenByClientCredential({
      scopes: [`${scope}/.default`],
      correlationId: v4()
    })We always got the next warning message in our logs
@azure/[email protected] : Warning - No client info in response
We'd like to understand the meaning of this warning, if we are missing something, or if we can disable it to keep our logs clean.
Error Message
No response
MSAL Logs
No response
Network Trace (Preferrably Fiddler)
- Sent
 - Pending
 
MSAL Configuration
auth: {
        clientId: authConfig.clientId as string,
        authority: `https://login.microsoftonline.com/${authConfig.tenantId || 'botframework.com'}`,
        clientSecret: authConfig.clientSecret
      },
      system: this.sysOptionsRelevant Code Snippets
const cca = new ConfidentialClientApplication({
      auth: {
        clientId: authConfig.clientId as string,
        authority: `https://login.microsoftonline.com/${authConfig.tenantId || 'botframework.com'}`,
        clientSecret: authConfig.clientSecret
      },
      system: this.sysOptions
    })
    const token = await cca.acquireTokenByClientCredential({
      scopes: [`${scope}/.default`],
      correlationId: v4()
    })Reproduction Steps
- Configure the App Registration with Web as authentication platform
 - Acquire Token with Secret
 
Expected Behavior
no warnings in the logs
Identity Provider
Entra ID (formerly Azure AD) / MSA
Browsers Affected (Select all that apply)
None (Server)
Regression
No response
Metadata
Metadata
Assignees
Labels
bug-unconfirmedA reported bug that needs to be investigated and confirmedA reported bug that needs to be investigated and confirmedconfidential-clientIssues regarding ConfidentialClientApplicationsIssues regarding ConfidentialClientApplicationsmsal-nodeRelated to msal-node packageRelated to msal-node packagequestionCustomer is asking for a clarification, use case or information.Customer is asking for a clarification, use case or information.