iOS Question Ios is there okhttp lib

John Woodsmall

Active Member
Licensed User
Longtime User
I have used Okhttp on a small app in b4a.
it allowed access to an older server with an SSL certificate and code stack.

the http and http2utils did not work. I got ssl error on transmission.
but okhttp did work.

is there a okhttp lib for Ios?

do i need it?
 

tufanv

Expert
Licensed User
Longtime User
I have used Okhttp on a small app in b4a.
it allowed access to an older server with an SSL certificate and code stack.

the http and http2utils did not work. I got ssl error on transmission.
but okhttp did work.

is there a okhttp lib for Ios?

do i need it?

did you change hc.initialize to hc.initializeacceptall when you got an ssl error in the source of httputils2. There is no okhttp in ios you can use httputils2 and http and change hc.initialize to hc.initializeacceptall and try with that .
 
Upvote 0

John Woodsmall

Active Member
Licensed User
Longtime User
sorry?
i have httpuitls2 as lib
and in my source I have
h.initializ
(tried to added acceptall...failed)

do i need the source of httputils2 and if so
where is it?

thanks
 
Upvote 0
Top