我正在尝试使用使用各种参数的红宝石发出获取请求
我是这个初学者。我只需要一个简单的ruby脚本即可从端点获取响应。
require 'rest-client'
require 'json'
reply = RestClient.get("https://api.example.com", {:ssl_client_cert => OpenSSL::PKey::RSA.new(File.read("/Users/sudhanshushrivastava/Desktop/test.pem"), "test")})
p JSON.parse(reply)