gpt4 book ai didi

c# - 来自 Google 的 Oauth2 响应给出了 DotNetOpenAuth 400 错误请求

转载 作者:行者123 更新时间:2023-11-30 17:45:07 25 4
gpt4 key购买 nike

我正在为 Google 使用 ServiceStack 设置 OAuth2。我在我的 web.config 中注册了谷歌:

 <add key="oauth.GoogleOAuth.ConsumerKey" value="key"/>
<add key="oauth.GoogleOAuth.ConsumerSecret" value="secretkey"/>
<add key="oauth.GoogleOAuth.RedirectUrl" value="myurl/home"/>
<add key="oauth.GoogleOAuth.CallbackUrl" value="myurl.conm/auth/GoogleOAuth"/>

它在我的 Apphost 中这样注册:

 Plugins.Add(new AuthFeature(() => new CustomUserSession(),
new IAuthProvider[] {
new CredentialsAuthProvider(appSettings),
new FacebookAuthProvider(appSettings),
new TwitterAuthProvider(appSettings),
new BasicAuthProvider(appSettings),
new GoogleOAuth2Provider(appSettings),
}) { HtmlRedirect = null });

现在,当我转到 /auth/GoogleOAuth 时,我会被重定向到 google,允许 google 使用我的东西,然后被重定向回我自己的 /auth/GoogleOAuth,我假设 ServiceStack 会处理我的麻烦,然后我收到以下错误:

Response Status

Error Code
WebException
Message
The remote server returned an error: (400) Bad Request.
Stack Trace
[Authenticate: 05/02/2015 09:30:42]: [REQUEST: {provider:GoogleOAuth,state:{thestate} }] System.Net.WebException: The remote server returned an error: (400) Bad Request. at System.Net.HttpWebRequest.GetResponse() at DotNetOpenAuth.Messaging.StandardWebRequestHandler.GetResponse(HttpWebRequest request, DirectWebRequestOptions options)

我试着摆弄 redirectUrlcallbackUrl 但有些东西告诉我这是另一个问题。我以同样的方式使用 Twitter 和 Facebook 建立身份验证。

它崩溃的响应 url 是这样的:myurl/OpenAuthenticationTest/auth/GoogleOAuth?state={statenumber}&code={areallylongcode

有什么想法吗?

编辑:它似乎在错误之间切换:我有时也会遇到这个错误:

收到意外的 OAuth 授权响应,回调和客户端状态与预期值不匹配。

Edit2:我进行了更多测试,结果发现 linkedIn 也发生了完全相同的事情,它也是 OAuth2。所有 oauth1 工作正常。

最佳答案

事实证明,我指的是 google 和来自 google 的 url 中存在问题。我在代理上安装了 IIS,因此我可以从外部访问它,但是谷歌真的不喜欢这样。当我输入 http://localhost 作为我的 URL 时,一切正常。

关于c# - 来自 Google 的 Oauth2 响应给出了 DotNetOpenAuth 400 错误请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28340686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com