我正在尝试使用ServiceStack.Authentication.OpenId软件包启动并运行Google。我已经关注了SocialBootStrap示例,但无法弄清楚我错过了什么。
我已将身份验证提供程序添加到我的apphost:
Plugins.Add(new AuthFeature(() => new CustomUserSession(), new IAuthProvider[] {
new CredentialsAuthProvider(), //HTML Form post of UserName/Password credentials
new TwitterAuthProvider(appSettings), //Sign-in with Twitter
new FacebookAuthProvider(appSettings), //Sign-in with Facebook
new GoogleOpenIdOAuthProvider(appSettings), //Sign-in with Goolge OpenId
new WsFedSamlAuthProvider(appSettings)
})
我已将配置设置添加到我的app.config(我正在运行一个自我主机应用程序):
<add key="oauth.googleopenid.AppId" value="XXX" />
<add key="oauth.googleopenid.AppSecret" value="XXX" />
<add key="oauth.googleopenid.RedirectUrl" value="http://XXX" />
<add key="oauth.googleopenid.CallbackUrl" value="http://XXX/api/auth/googleopenid" />
Incide上AppId和AppSecret不在示例中,但是如果没有它们我会收到不同的错误。
最后,我在登录页面上放置了一个Web表单:
<form action="/api/auth/googleopenid" method="POST">
<button class='btn' type='submit'>Sign-in with Google</button>
</form>
当我点击按钮时,我收到以下错误:
errorCode: InvalidOperation
Exceptionmessage: No current HttpContext was detected, so an IOpenIdApplicationStore instance must be explicitly provided or specified in the .config file. Call the constructor overload that takes an IOpenIdApplicationStore.stack
Trace[Auth: 08/01/13 20:49:30]: [REQUEST: {provider:googleopenid}]System.InvalidOperationException: No current HttpContext was detected, so an IOpenIdApplicationStore instance must be explicitly provided or specified in the .config file. Call the constructor overload that takes an IOpenIdApplicationStore. at DotNetOpenAuth.Messaging.ErrorUtilities.VerifyOperation(Boolean condition, String errorMessage, Object[] args) at DotNetOpenAuth.OpenId.RelyingParty.OpenIdRelyingParty.get_HttpApplicationStore() at DotNetOpenAuth.OpenId.RelyingParty.OpenIdRelyingParty..ctor() at ServiceStack.Authentication.OpenId.OpenIdOAuthProvider.Authenticate(IServiceBase authService, IAuthSession session, Auth request) at ServiceStack.ServiceInterface.Auth.AuthService.Authenticate(Auth request, String provider, IAuthSession session, IAuthProvider oAuthConfig) at ServiceStack.ServiceInterface.Auth.AuthService.Post(Auth request) at lambda_method(Closure , Object , Object ) at ServiceStack.ServiceHost.ServiceRunner`1.Execute(IRequestContext requestContext, Object instance, TRequest request)
我尽可能地遵循了这些例子,我想我错过了什么?
感谢您的期待。
答案 0 :(得分:1)
与错误状态相关的问题与没有HTTP上下文有关。这是因为我在自托管应用程序中运行,即不在IIS中运行。
要在此环境中工作,必须使用自定义应用程序商店提供dotnetopenauth。存储是加密密钥和随机数存储的地方,在IIS环境中,dotnetopenauth将使用通过HTTP上下文访问的应用程序缓存。
为了解决这个问题,我编写了一个由本机REDIS客户端和自定义OpenIdAuthentication Provider支持的自定义应用程序商店。
我已经在我的代码https://gist.github.com/miketrebilcock/6652969中提出了一个要点。这适用于我基于OpenId编写的STS服务器,但似乎不能与Servicestack中的OpenId提供程序一起使用 - 需要更多的调查。