将curl重写为HTTP POST请求以获取访问令牌

问题描述 投票:0回答:2

我试图通过在rails中使用post请求来获取访问令牌。我能够将此请求写为curl,成功检索令牌,但当我尝试将其转换为rails时,我收到400错误。

有效的卷曲如下。

curl -v -X POST   --url https://subdomain.okta.com/oauth2/v1/token   --header 'accept: application/json'   --header 'content-type: application/x-www-form-urlencoded'   --data 'grant_type=authorization_code&redirect_uri=https%3A%2F%2Fexample.com%2Foauth%2Fobfuscated%2Fcallback1&code=HxYy0kiN-eG1GuZ3LaYA&client_id=somecode&client_secret=anothercode'

产生400错误的ruby方法如下:

theURLToGetToken = "https://subdomain.okta.com/oauth2/v1/token";
puts "URL for Token Validation"
puts theURLToGetToken

params = {
        'client_id' => AUTH['OKTA_CLIENT_ID'],
        'client_secret' => AUTH['OKTA_CLIENT_SECRET'],
        'code' => theCode,
        "grant_type" => "authorization_code",
        'redirect_uri' => "https://example.com/oath/obfuscated/callback1"
}

uri = URI.parse(theURLToGetToken)

request = Net::HTTP::Post.new(uri.path)
request["content_type"] = "application/x-www-form-urlencoded"
request["Accept"] = "application/json"
request.set_form_data(params)

req_options = {
    use_ssl: uri.scheme == "https",
}

response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
    http.request(request)
end

puts "Here's the response"
pp response

任何建议将不胜感激。

ruby-on-rails http curl post okta
2个回答
0
投票

我不知道这里有什么问题,但在这种情况下我做的是:

1)找到一个可用于测试请求的虚拟网站(或创建requestbin

2)将curl请求发送到您的网站并保存有关它的信息

3)使用您的代码将请求发送到您的网站

4)比较结果

希望能帮助到你。


0
投票

你最好使用Postman,可以从这里下载https://www.getpostman.com/pricing

只有在您使用Postman正确确认api之后,才能更好地使用rest-client,faraday或一些简洁的api客户端。

© www.soinside.com 2019 - 2024. All rights reserved.