First draft of WordPress provider in place

This commit is contained in:
Jerrie Pelser
2014-11-03 13:23:44 +07:00
parent 8cbb7255a3
commit 8babcbcd29
14 changed files with 647 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ using Owin.Security.Providers.TripIt;
using Owin.Security.Providers.Yahoo;
using Owin.Security.Providers.OpenID;
using Owin.Security.Providers.Steam;
using Owin.Security.Providers.WordPress;
namespace OwinOAuthProvidersDemo
{
@@ -127,6 +128,10 @@ namespace OwinOAuthProvidersDemo
//app.UseArcGISOnlineAuthentication(
// clientId: "",
// clientSecret: "");
app.UseWordPressAuthentication(
clientId: "",
clientSecret: "");
}
}
}