azure-active-directory

Changing the domain name for AAD auth with openIdConnect for multi node multi geo applications

南楼画角 提交于 2021-02-05 09:40:23
问题 I am using Asp.Net Core 2.2 and targeting .NET Framework 4.7.2. Ours is a multi cluster, multi node app. We are using Azure AD with OpenId Connect for authenticating the user. Our Startup.cs looks like this : services.Configure<CookiePolicyOptions>(options => { // This lambda determines whether user consent for non-essential cookies is needed for a given request. options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); services.AddAuthentication

Changing the domain name for AAD auth with openIdConnect for multi node multi geo applications

a 夏天 提交于 2021-02-05 09:36:27
问题 I am using Asp.Net Core 2.2 and targeting .NET Framework 4.7.2. Ours is a multi cluster, multi node app. We are using Azure AD with OpenId Connect for authenticating the user. Our Startup.cs looks like this : services.Configure<CookiePolicyOptions>(options => { // This lambda determines whether user consent for non-essential cookies is needed for a given request. options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); services.AddAuthentication

Changing the domain name for AAD auth with openIdConnect for multi node multi geo applications

北城余情 提交于 2021-02-05 09:36:12
问题 I am using Asp.Net Core 2.2 and targeting .NET Framework 4.7.2. Ours is a multi cluster, multi node app. We are using Azure AD with OpenId Connect for authenticating the user. Our Startup.cs looks like this : services.Configure<CookiePolicyOptions>(options => { // This lambda determines whether user consent for non-essential cookies is needed for a given request. options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); services.AddAuthentication

How to get users from azure active directory to azure function

大憨熊 提交于 2021-02-05 09:32:08
问题 I am developing a server less application using azure functions using Node js. Function app auth via azure active directory. My scenario is I want to get particular user data ex(email,username etc) by using his email or username during execution of one of http trigger function. There are several options that I already checked (ad and activedirectory libraries. These library seems not updated and I want to know is there any way to do this by using azure's Node Js SDK? I am seeking a solution

Django Microsoft AD Authentication

谁都会走 提交于 2021-02-05 09:24:06
问题 I noticed that this question was repeated few times, but still, from all the resources, I couldn't manage to make it work properly. I'm simply trying to use Azure Active Directory authentication with my Django app. I am using this module, and I configured everything as noted in the docs. The thing is - I can't figure out where should user enter the credentials - since the module has only one url ('auth-callback/'). I can't find out how to jump to Microsoft login html page. Should I use my

Can't get events with open extension in Microsoft Graph API

为君一笑 提交于 2021-02-05 09:23:09
问题 I created an event through a shared mailbox in Graph API. https://graph.microsoft.com/v1.0/users/{shared-user-id}/calendars/{shared-calendar-id}/events { "subject": "New Event Test", "body": { "contentType": "HTML", "content": "Mail FLow Test" }, "start": { "dateTime": "2021-01-29T12:00:00", "timeZone": "Eastern Standard Time" }, "end": { "dateTime": "2021-01-30T14:00:00", "timeZone": "Eastern Standard Time" }, "attendees": [ { "emailAddress": { "address":"calendar@contoso.com", "name":

does the azure App Service Authentication module suport azure aad b2c?

风格不统一 提交于 2021-02-05 06:40:47
问题 I have a UWP app that needs a backend. I want to use azure app service and need set an authentication for the background. The App Service Authentication module can easily set and Authentication for the app. I wish to use AAD B2C, but the App Service authentication module say that it does not support aad 2.0/msal. So, does the App Service Authentication module can support AAD B2C? And, how can I verify the AAD B2C token signature on the webservice? Microsoft doc said can use some library to

does the azure App Service Authentication module suport azure aad b2c?

巧了我就是萌 提交于 2021-02-05 06:40:27
问题 I have a UWP app that needs a backend. I want to use azure app service and need set an authentication for the background. The App Service Authentication module can easily set and Authentication for the app. I wish to use AAD B2C, but the App Service authentication module say that it does not support aad 2.0/msal. So, does the App Service Authentication module can support AAD B2C? And, how can I verify the AAD B2C token signature on the webservice? Microsoft doc said can use some library to

Azure AD v2.0-specific optional claims missing from ID Token

我只是一个虾纸丫 提交于 2021-02-04 21:46:59
问题 I'm trying to add optional claims using Microsoft Identity Web - NuGet for user authentication in NET Core 3.1 WebApp. Reading the MS Docs, it seems that the only steps needed are to declare the optional claims within the App Registration Manifest file in Azure. But when testing the login process using two different apps (my own code and an MS project example) it looks like the optional claims are not being added to the ID Token when returned from Azure following a successful login i.e they

Azure AD v2.0-specific optional claims missing from ID Token

无人久伴 提交于 2021-02-04 21:46:38
问题 I'm trying to add optional claims using Microsoft Identity Web - NuGet for user authentication in NET Core 3.1 WebApp. Reading the MS Docs, it seems that the only steps needed are to declare the optional claims within the App Registration Manifest file in Azure. But when testing the login process using two different apps (my own code and an MS project example) it looks like the optional claims are not being added to the ID Token when returned from Azure following a successful login i.e they