azure-active-directory

Azure AD App Redirect URI for Chrome Exntension

江枫思渺然 提交于 2020-07-30 04:18:23
问题 I'm using the Microsoft Authentication Library for JavaScript (MSAL.js) version 1.3.2 in my chrome extension built on React JS. I have two login scenario I need to support in order to get a bearer token used in the rest of my application: promptLogin() handles the first time the user authenticates in my extension. getTokenAsync() handles acquiring a bearer token silently for a user who has already authenticated in my extension. This approach returns an id token that I do not use, should I?

how to read certificate if web app is hosted over azure app service

老子叫甜甜 提交于 2020-07-28 04:56:00
问题 I have a asp.net core web api (app1) application which is calling another asp.net core web api (app2) and I am considering app1 as deamon app and I would like to follow client credentials with certificate rather than application secrets. https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/tree/master/2-Call-OwnApi#variation-daemon-application-using-client-credentials-with-certificates Everything works fine till my both app1 and app2 running in local machine where I am

How to fetch all users from Azure Active Directory Group using C#

不想你离开。 提交于 2020-07-23 08:58:14
问题 We have an application developed in ASP.NET MVC. We also have Acitve Directory configured in Azure and it has some Groups into it. Requirement is, we need to fetch all users from Azure Active Directory's Group and add a new user into it. We are using code below and it is asking extra authentication I guess. we want to provide all authentication in code it self without giving popup wondow to authenticate. Can you please help with this // Build a client application. IPublicClientApplication

How to fetch all users from Azure Active Directory Group using C#

岁酱吖の 提交于 2020-07-23 08:56:05
问题 We have an application developed in ASP.NET MVC. We also have Acitve Directory configured in Azure and it has some Groups into it. Requirement is, we need to fetch all users from Azure Active Directory's Group and add a new user into it. We are using code below and it is asking extra authentication I guess. we want to provide all authentication in code it self without giving popup wondow to authenticate. Can you please help with this // Build a client application. IPublicClientApplication

How to configure Azure AD SSO programmatically for gallery-based application?

别来无恙 提交于 2020-07-23 08:13:16
问题 I need to configure Azure Active Directory SSO for Tableau Server gallery app as it is under MS documentation link programmatically. Are there useful powershell cmdlets / rest apis? I create application from gallery using graph api from Step 1 on MS docs. To get available templates: GET https://graph.microsoft.com/beta/applicationTemplates To create template app: POST https://graph.microsoft.com/beta/applicationTemplates/{id}/instantiate Now I need to configure SAML SSO from code and assign

How to configure Azure AD SSO programmatically for gallery-based application?

心已入冬 提交于 2020-07-23 08:13:16
问题 I need to configure Azure Active Directory SSO for Tableau Server gallery app as it is under MS documentation link programmatically. Are there useful powershell cmdlets / rest apis? I create application from gallery using graph api from Step 1 on MS docs. To get available templates: GET https://graph.microsoft.com/beta/applicationTemplates To create template app: POST https://graph.microsoft.com/beta/applicationTemplates/{id}/instantiate Now I need to configure SAML SSO from code and assign

How to configure Azure AD SSO programmatically for gallery-based application?

你。 提交于 2020-07-23 08:11:52
问题 I need to configure Azure Active Directory SSO for Tableau Server gallery app as it is under MS documentation link programmatically. Are there useful powershell cmdlets / rest apis? I create application from gallery using graph api from Step 1 on MS docs. To get available templates: GET https://graph.microsoft.com/beta/applicationTemplates To create template app: POST https://graph.microsoft.com/beta/applicationTemplates/{id}/instantiate Now I need to configure SAML SSO from code and assign

Unable to add Azure AD group with ':' in display name to Azure SQL, am I missing something?

孤者浪人 提交于 2020-07-23 07:24:33
问题 In our Azure AD, we have Security groups named with (:) in the name. So the format looks like SG:{Group Name} . When I try to add a group with (:) in the name to Azure SQL using a query below CREATE USER [SG:Developers] FROM EXTERNAL PROVIDER; I'm getting an error shown below Msg 15007, Level 16, State 6, Line 1 'SG:Developers' is not a valid login or you do not have permission. I am able to add groups with spaces or underscores in the name, so far its just (:) causing issues. I don't believe

Unable to add Azure AD group with ':' in display name to Azure SQL, am I missing something?

爷,独闯天下 提交于 2020-07-23 07:23:05
问题 In our Azure AD, we have Security groups named with (:) in the name. So the format looks like SG:{Group Name} . When I try to add a group with (:) in the name to Azure SQL using a query below CREATE USER [SG:Developers] FROM EXTERNAL PROVIDER; I'm getting an error shown below Msg 15007, Level 16, State 6, Line 1 'SG:Developers' is not a valid login or you do not have permission. I am able to add groups with spaces or underscores in the name, so far its just (:) causing issues. I don't believe

Unable to add Azure AD group with ':' in display name to Azure SQL, am I missing something?

99封情书 提交于 2020-07-23 07:21:26
问题 In our Azure AD, we have Security groups named with (:) in the name. So the format looks like SG:{Group Name} . When I try to add a group with (:) in the name to Azure SQL using a query below CREATE USER [SG:Developers] FROM EXTERNAL PROVIDER; I'm getting an error shown below Msg 15007, Level 16, State 6, Line 1 'SG:Developers' is not a valid login or you do not have permission. I am able to add groups with spaces or underscores in the name, so far its just (:) causing issues. I don't believe