如何使用Authorization Bearer
将Net::HTTP
添加到POST请求?
我只能找到"基本身份验证的帮助"在文档中。
req.basic_auth 'user', 'pass'
来源:https://docs.ruby-lang.org/en/2.0.0/Net/HTTP.html#class-Net::HTTP-label-Basic+Authentication
我试图复制一个看起来像的卷曲:
> curl 'http://localhost:8080/places' -d '{"_json":[{"uuid":"0514b...",
> "name":"Athens"}]}' -X POST -H 'Content-Type: application/json' -H
> 'Authorization: Bearer eyJ0eXAiO...'
目前我已经接受了:
require 'net/http'
require 'net/https'
require 'uri'
uri = URI('http://localhost:8080/places')
res = Net::HTTP.post_form(uri, '_json' => [{'uuid': '0514b...', 'name':'Athens'}])
但我无法弄清楚如何添加Authentication: Bearer...
部分。
有没有人有这方面的经验?
答案 0 :(得分:2)
我认为您不能使用post_form
方法添加自定义标头。您可以使用post方法添加它。请尝试以下代码:
uri = URI("http://localhost:8080/places")
params = [{'uuid': '0514b...', 'name':'Athens'}]
headers = {
'Authorization'=>'Bearer foobar',
'Content-Type' =>'application/json',
'Accept'=>'application/json'
}
http = Net::HTTP.new(uri.host, uri.port)
response = http.post(uri.path, params.to_json, headers)