【发布时间】:2015-12-14 20:00:36
【问题描述】:
为响应 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
【问题讨论】:
-
如果每次都发生这种情况,您能否提供触发请求的实际代码?
-
将其添加到问题中
标签: ruby-on-rails oauth oauth-2.0 linkedin omniauth