[termux pkg] nim:SSL routines:tls_process_server_certificate:certificate verify failed [SslError]

2021-12-11 Thread Chat_noir
Nim Compiler Version 1.6.0 [Android: arm] on termux package is clear this point. It's mean no problem. just use '-d:ssl' for compiling for use https request on nomal httpclient.

[termux pkg] nim:SSL routines:tls_process_server_certificate:certificate verify failed [SslError]

2021-08-31 Thread Chat_noir
ï¼ HJarausch Thank you HJarausch ;-) I'm not special yet. Is that means those bash execute building nightly dev nim from the source ?

[termux pkg] nim:SSL routines:tls_process_server_certificate:certificate verify failed [SslError]

2021-08-31 Thread Chat_noir
I 'm back here. I learn how to build Nim-1.4.8 on termux wget https://nim-lang.org/download/nim-1.4.8.tar.xz tar -vxf nim-1.4.8.tar.xz cd nim-1.4.8 sh build.sh --os android bin/nim c koch ./koch boot -d:release ./koch tools Ru

[newbie] Question about downloading image files programming

2021-08-22 Thread Chat_noir
It was just my misunderstand. just my test IP region was accepted but it was not 403. so both of case not over 403, it is just 200. sorry

[newbie] Question about downloading image files programming

2021-08-22 Thread Chat_noir
I want to know how to write code about download image file over responging 403 error code in nim. I can't find simple example programming code about requested `respond.body == binary` and `respond.code == 403` case on httpclient. Example : below `img_url` may returns 403 code but the program get

[termux pkg] nim:SSL routines:tls_process_server_certificate:certificate verify failed [SslError]

2021-08-20 Thread Chat_noir
Thank you. I will wait for updating 'pkg nim'. I 'm very new nim.I started nim 5 h ago.So I should learn another basic syntax on nim first.

[termux pkg] nim:SSL routines:tls_process_server_certificate:certificate verify failed [SslError]

2021-08-20 Thread Chat_noir
termux case: u0_a185@localhost ~/nimtest> curl https://curl.se/ca/cacert.pem -o cacert.pem % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 100

[termux pkg] nim:SSL routines:tls_process_server_certificate:certificate verify failed [SslError]

2021-08-20 Thread Chat_noir
OK, I clear this issue on Windows. Rf. I will try as same way on Termux later ...

SSL error using httpClient

2021-08-20 Thread Chat_noir
Same issue on [Termux: Android trminal emu] error: SSL routines:tls_process_server_certificate:certificate verify failed [SslError] import httpclient var client = newHttpClient() echo client.getContent("https://google.com";)

[termux pkg] nim:SSL routines:tls_process_server_certificate:certificate verify failed [SslError]

2021-08-20 Thread Chat_noir
I wrote a http request code in Termux ... result was certificate verify failed How to fix certificate verify on nim ? httpreq.nim import httpclient var client = newHttpClient() echo client.getContent("http://google.com";) Run Compiled c -r -d:ss