Android Question OkHttpUtils2 get string from url

Addo

Well-Known Member
Licensed User
Longtime User
i am trying to use okhttputils2 to get url content as string but i i did not found any get function in httpjob

B4X:
Dim j As HttpJob
j.Initialize("", Me)
'j. i found only download and download2 and post etc.. but where is get ?
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
End If
j.Release
 
Top