zkessin
I am trying to hit an HTTPS endpoint and when I call it HTTPoison returns this error
{:error, %HTTPoison.Error{id: nil, reason: {:tls_alert, {:handshake_failure, 'TLS client: In state hello received SERVER ALERT: Fatal - Handshake Failure\n'}}}}
I am passing these options to the get command
http_options = [ssl: [versions: [:"tlsv1.2"], verify: :verify_none]]
{:ok, results} = get(url, [], http_options)
I have been banging my head on this for a few days now and my google-fu has failed me, any suggestions on how to fix this?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 16 to 7- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
tmariaz
Still same error when calling the api… Do I have to look for the log?
When I run the following I get the TLS info.
What am I missing?
D4no0
This is part of common options:
tmariaz
I am new to Erlang and Elixir. Sorry for being noob. Can I know how to run that command?
D4no0
Start ssl in verbose mode, then check what algorithm it is using for key exchange and cipher.
tmariaz
This still doesn’t help me to fix my handshake error.
config.exs
Error Log:
Not sure what is wrong?
The server still on Erlang OTP 20 and not yet updated to latest version.
affficionado
A little update:
:sslAPI have been changed, and correct code would berjk
just to add as a helper to debug these calls:
:hackney_trace.enable(:max, :io)logs your requests to STDOUT on the REPL/console (it shows the enabled cipers for example).voltone
Ah, of course, I had forgotten all about the removal of RSA key exchange already. One would expect a site such as this to support (EC)DHE: I mean, it is 2021…
Anyway, keep in mind that
:ssl.cipher_suites/1,2is deprecated. The ‘official’ way to select custom ciphers would be something like:Also, and more importantly, as @Exadra37 pointed out, passing custom
ssloptions to Hackney/HTTPoison will override its secure defaults, includingverify: :verify_peerand the CA trust store. So actually, for a secure connection you’d have to call:rjk
It seems they’ve documented it here: Erlang -- ssl
Glad to see your code is working again!
crusso
Excellent!
My code is working again. That’s a big relief. At first when the etrade API stopped working, I was worried that they had changed something fundamental in their OAUTH implementation that was going to involve some painstaking debugging. I’m having enough trouble finding time for this side project. I was dreading the thought at having to spend precious hours reworking code that had been working fine.
I guess that either the etrade admins stopped supporting some cipher I was using before or the erlang ssl stopped including some suites by default. Either way, your suggestion did the trick.
Thank you very much.