I have a website called aaa.com which is on the internet. This website has a membership system and it is also working fine. Now we want to make membership login transactions etc. via our Authentication Provider from other bbb.com and cccc.com websites. Like
facebook login or twitter login. Could you give me some examples or information on how to do this?
Building your own single sign on solution from scratch is a relatively large task which takes planning. You'll need to decide on flow, what kind of tokens to use, etc.
Member
2 Points
32 Posts
Create Own External Authentication Provider
Aug 11, 2018 06:06 PM|davilanka|LINK
Hi everybody,
I have a website called aaa.com which is on the internet. This website has a membership system and it is also working fine. Now we want to make membership login transactions etc. via our Authentication Provider from other bbb.com and cccc.com websites. Like facebook login or twitter login. Could you give me some examples or information on how to do this?
Thank you
All-Star
53641 Points
24007 Posts
Re: Create Own External Authentication Provider
Aug 11, 2018 06:22 PM|mgebhard|LINK
https://docs.microsoft.com/en-us/aspnet/aspnet/overview/owin-and-katana/owin-oauth-20-authorization-server
Member
2 Points
32 Posts
Re: Create Own External Authentication Provider
Aug 12, 2018 12:31 PM|davilanka|LINK
Yes, I wanted to tell you exactly the authentication service.
Thank you your reply, mgebhard
All-Star
53641 Points
24007 Posts
Re: Create Own External Authentication Provider
Aug 12, 2018 12:49 PM|mgebhard|LINK
Aside from the OWIN sample in my previous link, there is IdentityServer4 for using in ASP Core.
http://docs.identityserver.io/en/release/
There are also 3rd party services.
https://auth0.com/
Building your own single sign on solution from scratch is a relatively large task which takes planning. You'll need to decide on flow, what kind of tokens to use, etc.