single-sign-on

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

SimpleSAMLPHP redirection loop

瘦欲@ 提交于 2020-07-21 07:04:12
问题 we are trying to setup sso with custom mysql database but it is going into endless loop between below two requests. POST http://192.168.0.15/simplesaml/module.php/core/loginuserpass.php Set-Cookie PHPSESSID=d0eaabb959ffeb2a0dd20f4744945f8f; path=/; HttpOnly SimpleSAMLAuthToken=_297a91e9a4e14c61d247427063201a39587396c2e3; path=/; httponly http://192.168.0.15/simplesaml/module.php/core/loginuserpass.php?AuthState=_e3e75218660095b936b9582356bcbc7b1e26934876%3Ahttp%3A%2F%2F192.168.0.15

Setting up DoorKeeper with multiple Rails/React applications?

孤街浪徒 提交于 2020-07-10 08:38:06
问题 I've built multiple Rails/React applications for my company (all in one using Rails 6. Rails renders json to React). All applications will be on the same domain and eventually, access rights will be done via VPN. For now, I would like to build a Single Sign On app that would give a list of apps to choose from (Accounts, Dashboard, Audits, etc). Based on the users credentials, they may or may not have certain privileges on these applications. I appears that the Doorkeeper Gem is the way to go

SSO Implementation ColdFusion

给你一囗甜甜゛ 提交于 2020-06-29 18:59:51
问题 This is a very basic question. I want to do an SSO integration using ColdFusion but do not know where to start. I found the website ssoeasy.com through a google search, but am very confused about how to use it and where to find documentation. I think it has something related with cfldap or cfhttp but not sure what and where: <cfhttp method="get" url="http://testsso.com/login.cfm"> </cfhttp> 回答1: It really depends on what role you want to play in an SSO ecosystem. Are you an app in a larger

SSO Implementation ColdFusion

吃可爱长大的小学妹 提交于 2020-06-29 18:56:48
问题 This is a very basic question. I want to do an SSO integration using ColdFusion but do not know where to start. I found the website ssoeasy.com through a google search, but am very confused about how to use it and where to find documentation. I think it has something related with cfldap or cfhttp but not sure what and where: <cfhttp method="get" url="http://testsso.com/login.cfm"> </cfhttp> 回答1: It really depends on what role you want to play in an SSO ecosystem. Are you an app in a larger

SSO Implementation ColdFusion

匆匆过客 提交于 2020-06-29 18:56:21
问题 This is a very basic question. I want to do an SSO integration using ColdFusion but do not know where to start. I found the website ssoeasy.com through a google search, but am very confused about how to use it and where to find documentation. I think it has something related with cfldap or cfhttp but not sure what and where: <cfhttp method="get" url="http://testsso.com/login.cfm"> </cfhttp> 回答1: It really depends on what role you want to play in an SSO ecosystem. Are you an app in a larger

Getting NULL Identity while authenticating user via Azure AD authentication

痞子三分冷 提交于 2020-06-29 04:37:45
问题 I am trying to authenticate user by Azure AD using WS-federation. I've implemented multiple authentication schemes and redirect the user to the respective schemes using Challenge(). return Challenge(new AuthenticationProperties { RedirectUri = "http://localhost:57826/Account/AzureADLogin"}, authenticationScheme); This can redirect me to the Microsoft login page and after successful login, it redirects me to the action method AzureADLogin(). But somehow in AzureADLogin(), I could not able to

How to create facebook like own native SSO app?

坚强是说给别人听的谎言 提交于 2020-06-29 04:30:08
问题 First of all, sorry for possible duplication, I'm sure this question was asked many times in many forms but I can't find clear answer or direction how to start. What I am trying to do is sso for our organization apps on android and I want it with native experience(without browser). I have oidc built on identityserver4 and it's already in production with web and mobile clients. I'm not asking for implementation details here, just some reference, good example for how to create app which will be

SSO for .net core 3.1 web api

自作多情 提交于 2020-06-29 03:59:07
问题 We would like to achieve SSO( Google, Microsoft, Twitter, Facebook ) for a .net core 3.1 web api (console api controllers) application. I have gone through few links that achieves this with the help of MVC or angular front end and IdentityServer4 . Our application is purely an web api. Can some one guide me with sample code or link to achieve this? How does SignInWithGoogle/FB/Twitter/Microsoft button and its click will be handled? 来源: https://stackoverflow.com/questions/62173069/sso-for-net