We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Heroku’s default stack, using this gem generates an SSL error.
This is due to Ruby not being able to find the certification authority certificates (CA Certs) used to verify the authenticity of the request.
The text was updated successfully, but these errors were encountered:
To fix it, you can add the following:
OpenWeather.configure do |config| config.ca_file = ENV["OPENWEATHER_API_CA_FILE"] if ENV["OPENWEATHER_API_CA_FILE"] end
And configure the path to the CA certificate on Heroku:
heroku config:set OPENWEATHER_API_CA_FILE=/usr/lib/ssl/certs/ca-certificates.crt
Sorry, something went wrong.
I believe we need a fix like slack-ruby/slack-ruby-client#416 here. Want to contribute it @sunny?
ca_file
ca_path
Thanks for the swift reviews and merges!
Successfully merging a pull request may close this issue.
When using Heroku’s default stack, using this gem generates an SSL error.
This is due to Ruby not being able to find the certification authority certificates (CA Certs) used to verify the authenticity of the request.
The text was updated successfully, but these errors were encountered: