简体   繁体   中英

Parsing HTTPS instead of HTTP in Rails

I know how to parse HTTP requrests using Net::HTTP. How do you parse HTTPS requests?

I've tried and it says as a response (one of the lines):

<head><title>400 The plain HTTP request was sent to HTTPS port</title></head>

stox

Edited:

So to show you in a little bit more detail:

For example, here is the HTTP API

https://xxxxx.info/merchant/balance?password=$main_password

How do I use Net:http to run this? Or do I use something else?

Thanks Stox

would be helpful if you showed us some code?

try setting these attributes

# assuming http is generated like this http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
# might need this as well? 
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM