我试图将 verify_ssl=>false
放入请求中,但它不起作用。
下面是我的代码:
def login_request (username, password)
request_body_map = {:userName => username, :password => password}
request_header = {:content_type => 'application/json', :accept => 'application/json'}
begin
res = RestClient.post endpoint, request_body_map.to_json, {:header => request_header, :verify_ssl => false}
response_data = JSON.parse(res.body)
rescue Exception => e raise e
end
end
请使用RestClient::Request.execute(method: :get, url: url, headers: headers, verify_ssl: false)
verify_ssl
在 RestCient.method 中不被接受
我是一名优秀的程序员,十分优秀!