繁体   English   中英

尝试从Google OAuth 2.0获取access_token时为什么会出现404错误?

[英]Why do I get a 404 Error when attempting to get an access_token from google OAuth 2.0?

我目前正在建立OAuth授权,仅获取电子邮件和个人资料信息。

我可以使用以下代码轻松获得代码:

def authorize
  base = "https://accounts.google.com/o/oauth2/auth?"
  params = {
    :scope => "https://www.googleapis.com/auth/userinfo.profile",
    :redirect_uri => "http://localhost:3000/oauth/callback/",
    :client_id => "id",
    :response_type => 'code'
  }
  redirect_to base + params.to_query
end

但是,当我尝试从Google获取访问令牌时,出现404错误:

def callback
  code = params[:code]
  client_id = 'id'
  client_secret = 'secret'
  redirect_uri = "http://localhost:3000/oauth/callback/"
  http = Net::HTTP.new('accounts.google.com', 80)
  path = "https://accounts.google.com/o/oauth2/token?"
  headers = {'Content-Type'=>"application/x-www-form-urlencoded" }
  parameters = "code=#{code}&grant_type=authorization_code&client_secret=#{client_secret}&client_id=#{client_id}&redirect_uri=#{redirect_uri}"
  resp, data = http.post(path,parameters,headers)
end

response code: 404  data: Google Home | Sign in

The page you requested is invalid.

我不确定问题可能是什么。 我试图匹配复制并粘贴已注册的回调URL。 我已经多次检查了参数,但找不到导致错误的原因。

我正在遵循Google文档并已在Google注册以下信息:

Client ID for web applications 
Client ID: id
Client secret: secret
Redirect URIs: http://localhost:3000/oauth/callback/ 
JavaScript origins: none

得到它的工作!

好像我错过了几件事:

  1. 为HTTP请求添加了SSL设置。
  2. 将参数作为正文而不是作为请求的一部分发送。
  3. 将内容类型正确放入请求中。

我希望这可以帮助某个人!

param = {
  :code => params[:code],
  :client_id => client_id,
  :client_secret => client_secret,
  :redirect_uri => "http://localhost:3000/oauth/callback/",
  :grant_type => 'authorization_code'
}

uri = URI.parse("https://accounts.google.com/o/oauth2/token")
http = Net::HTTP.new(uri.host, uri.port)
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.use_ssl = true
request = Net::HTTP::Post.new(uri.request_uri)
request["Content-Type"] = "application/x-www-form-urlencoded"
request.body = param.to_query
response = http.request(request)

如果您试图让Google重定向到:

:redirect_uri => "http://localhost:3000/oauth/callback/",

我怀疑他们找不到localhost 给他们您的真实IP地址。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM