B4J Question [SOLVED]Post and Put

Alexander Stolte

Expert
Licensed User
Longtime User
Which library should I choose?
jOkHttpUtils2

B4X:
Dim j As HttpJob
    j.Initialize("", Me)
    j.PutBytes("http://xxx.xxx.xxx.xxx/api/transactions/10001?state=OK",Data)
    Wait For (j) JobDone(j As HttpJob)
    If j.Success Then
        Log("image upload successfully")
    End If
    j.Release
 
Upvote 0
Top