我有两个在不同端口上运行的 Rails 应用程序。我试图从一个应用程序使用另一个应用程序的 API。这是 APP_1 中 Product.rb 模型的代码。
class Product < ActiveResource::Base
self.site = "https://localhost:3000"
self.ssl_options = {:cert => OpenSSL::X509::Certificate.new(File.open(pem_file)),
:key => OpenSSL::PKey::RSA.new(File.open(pem_file)),
:ca_path => "/path/to/OpenSSL/formatted/CA_Certs",
:verify_mode => OpenSSL::SSL::VERIFY_PEER}
end
我为 Product 模型设置了控制器和路由。当我运行 APP_1 我得到
undefined local variable or method `pem_file' for Product:Class
谁能告诉我如何编写 pem 文件,什么是 pem 文件?