ruby-on-rails – LinkedIn OAuth返回不明确的错误

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – LinkedIn OAuth返回不明确的错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为响应oauth请求,LinkedIn使用以下参数将用户重定向回我的服务器:
GET /auth/linkedin/callback?error=server_error&error_description=f228ff35d9f7f99ee891ff1e9b056a7a2e4b8429b84de8d7&state=the+authorization+server+encountered+an+unexpected+condition

此外,根据LinkedIn API,error_description是“总结错误的URL编码的文本描述.”,这不是这种情况.

这是原始请求:

https://www.linkedin.com/uas/oauth2/authorization?client_id=************&redirect_uri=https%3A%2F%2Fwww.mydomain.com%2Fauth%2Flinkedin%2Fcallback&response_type=code&scope=r_basicprofile+r_emailaddress&state=cc167e16fcc8039277cae38dc02d08bf526c955ceb403513

我怎样才能找出失败的真正原因?

我的堆栈:

> Rails 4.2.3
> omniauth 1.2.2
> omniauth-linkedin-oauth2 0.1.5

解决方法

我们遇到了类似的问题,它是由LI OAuth表单上的用户名字段中的尾随空格引起的.

我不确定为什么它在LI Oauth访问的其他网站上没有发生,但LI的某个人已经能够为我们验证它.这个问题应该很快得到解决(或者我们已经答应了)

原文链接:https://www.f2er.com/ruby/269600.html

猜你在找的Ruby相关文章