これは私のcurlリクエストです
`curl --insecure --location --request POST 'url' --header 'Content-Type: application/json' --data-raw '{
"client_id": "test"
}'
これはうまくいきました!
これが私のエリクサーのリクエストです
HTTPoison.post("url", request, ssl: [verify: :verify_none])
ここでエラーが発生しています
{:error,
%HTTPoison.Error{
id: nil,
reason: {:tls_alert,
{:handshake_failure,
'TLS client: In state certify at ssl_handshake.erl:1783 generated CLIENT ALERT: Fatal - Handshake Failure\n {bad_cert,unable_to_match_altnames}'}}
}}
`