skip to Main Content

Add azureSubscription in a "each" loop

I need to add the azureSubscription to my each loop which looks like this parameters: - name: info displayName: Information type: object default: info1: abc info2: 123 info3: hello steps: - checkout: none - ${{ each info in parameters.info }}:…

VIEW QUESTION

Azure – MSAL AcquireTokenInteractive redirects browser to unavaible localhost

We are using AcquireTokenInteractive to connect to EWS 365 like this: // using Microsoft.Identity.Client 4.61.1 var pca = PublicClientApplicationBuilder .CreateWithApplicationOptions(pcaOptions) // userId, tennantid .WithDefaultRedirectUri() .Build(); ... var result = await pca.AcquireTokenInteractive(ewsScopes).ExecuteAsync(); This is more or less what the example code…

VIEW QUESTION
Back To Top
Search