HAWK authentication
Hello,
I would like to use the IHTTPClient in combination with HAWK authentication.
Postman works and suggests the following wget request:
wget --no-check-certificate --quiet --method GET --timeout=0
--header 'Authorization: Hawk id="87644ab98ba1f2dee1b92bf", ts="1596541461", nonce="RieT_w", mac="DkPwis9BoQu6tnHtMw3wNZ7u+9HhqZk="'
'https://website.com/api/v1/example-request/'
Please note the --no-check-certificate option!
In my inno App I tried with:
httpClient->SetCustomHeaderField("Authorization", authHeader.c_str());
httpClient->Connect("https://website.com", nullptr, nullptr, HTTP_AUTH_NONE);
The http client connects, but after SetRequestType + Send, the following error occurs:
OpenSSLInstance::HandleSSLCallResult OpenSSL error 0 1 336151576:error:14094418:SSL routines:ssl3_read_bytes:tlsv1 alert unknown ca
Is it possible to use HAWK authentication with innovaphone's http client?
How?
Thank you,
Best regards,
Sam