I have integrated DotenetOpenAuth to login using google account.
Its working perfect.
Can i achieve this with it ?
Once user logged in site1.com if user browse to site2.com the user get automatically logged in.
DotNetOpenAuth includes a Samples directory. There are OpenIdWebRingSsoProvider and OpenIdWebRingSsoRelyingParty projects which, I believe, do exactly what you want to achieve. Though, you have to implement your own central SSO provider.
Related
Didn't find any similar question.
I will be creating a production Chrome extension for the first time and wanted to know if my company's login session can be shared between both webpages and extensions. Currently there is both Google authentication and a normal authentication on the company login page but I assume I only have to consider session and cookies.
If a user is logged in from the site, the extension should show logged in too and vice versa. The extension will also display login screen if user isn't logged in anywhere.
Is it bad practice by any chance?
i am new in azure ad
and i have been using sso plugin for azure ad to let my client user sigin into the wordpress
but this plugin make my client user login through microsoft login page
i have been looking for a solution to create a page that can bypass microsoft login page
but i cannot find anything except an sso using saml that using the same redirect method
and i kinda lost now
can anyone told me is it possible to create that kind of page?
if no is there any reason why
You can't. If you use Azure AD Premium you can style it a lot, but it will still have much of the same look.
That is on purpose.
See the comments on this question: Is custom login page of Azure Active Directory possible?
Iam having 4 Wordpress sites, 2 MediaWiki sites and one Drupal site.
I want to create a Single centralized login system so that users can access all these sites with Single account. I want to host it. I don't want SSO like FB Login, G Login, etc.
Is there any wordpress plugin or CMS or Script available for this?
Welcome to Stackoverflow!
What you want is implementing your own Identity Provider (IdP). Today the two most used standards are OAuth 2.0 and SAML.
For SAML - you can use for example simpleSAMLphp project. It will allow you to have SSO with your own user repository and there are some nice plugins for common CMS systems (Drupal, Wordpress) to integrate with any SAML IdP.
If you're new in this field it may take you some time to fully understand and debug the SAML authentication, but it is commonly used, secure (if you do it right) and works.
I have 2 asp.net website hosted on 2 different domain in a same server and also sharing the same database.
How can I implement it like this way that user logged via social login provider(Facebook, Google) and they will be logged in other site automatically?
Can anyone give me some sort of reference about this?
You need to go with option of SSO
Please try the below solution that I found.
for Social Login
https://codeload.github.com/rustd/SocialLoginASPNET/zip/master
for Cross Domain (SSO)
http://www.codeproject.com/Articles/106439/Single-Sign-On-SSO-for-cross-domain-ASP-NET-applic
Asp.net forms authentication and multiple domains
I hope this helps. let me know your outcome.
I am not a developer but not a total noob either.
I need some advice on how to implement the correct solution to my problem, and your help would be VERY much appreciated.
I have a WP site (www.mysite.com), I have the my users signing up on WP and once signed in they can navigate the site and change and check various things on their front-end user profile page. Now the problem comes in where I am using a 3rd party LMS platform running on a subdomain where I have courses my users can take (learn.mysite.com) - This platform at the default level requires users to sign up, and then via a shortcode placed on the WP user profile page it generates a login form. They then need to login to that platform from the main site and get redirected to the LMS platform. The problem is I DO NOT want my users to sign up again and have to 'login' a 2nd time, they should be able to 'login' by clicking a simple button on their profile page and get redirected (SSO) from WP to the application. i.e The application should realize the user exists in my WP databse and 'let them in'
Now, The 3rd party platform does offer SSO support for SAML 2.0 and LDAP. So how can I make this work with my WP site as I need it explained above?
In short What I need:
Users login to my WP site, with their WP login details, WITHOUT being automatically redirected to 3rd party platform. THEN, when they choose to start learning click a simple link/button (placed on their profile page for example) and get passed seamlessly (SSO) to the platform?
I hope this makes sense, and how can I achieve this?