The documentation here suggests that DNN9 supports an OpenId Authentication Provider. But no such extension exists. Can you suggest how this can be enabled in DNN9?
Asked
Active
Viewed 655 times
1
-
1Perhaps too late for you, but I've written an oidc provider and client for DNN. It's basically a POC, using IdentityServer4 to log in (using authorization_code), but anyone who is interested can use it as a starting point: https://github.com/Ruard/ProcsIT.Dnn.OpenIdConnect – Sep 17 '18 at 18:11
1 Answers
2
Besides its default authentication scheme, DNN 9.1.1 also included these authentication extensions:
- DotNetNuke Facebook Authentication Project
- DotNetNuke Google Authentication Project
- DotNetNuke Live Authentication Project
- DotNetNuke Twitter Authentication Project
None is installed by default, but can be installed from the Extensions control on the Persona Bar.
There is an OpenId project on Codeplex: https://dnnauthopenid.codeplex.com/
But I don't see that it has been moved to GitHub, so that might indicate it's not up to date.

Joe Craig
- 1,244
- 1
- 7
- 7
-
The current version of OpenId is OpenId Connect; the linked project is OpenId 2.0 which is older. – Joseph McIntyre May 01 '18 at 19:49