mconf / bigbluebutton-api-ruby

BigBlueButton API gem for Ruby
Other
49 stars 42 forks source link

Add option to accept self-signed certificates when making API calls #24

Open daronco opened 8 years ago

daronco commented 8 years ago

Used mostly for development/testing, but it would be useful to have it, since right now it's not possible at all to make API requests to servers that have untrusted certificates.

It can be done with something like:

require 'net/https'
...
http.verify_mode = OpenSSL::SSL::VERIFY_NONE