Android Question Http Utils2

Rajesh Krishnan

Member
Licensed User
Hello could anyone tell me the syntax of doing a get or a post or a delete
Found this part of the code in one of the explanations but did not the syntax
as in what is the first key, the first value
and where is that http link got from for example this one "http://www.b4x.com/print.php"



'Send a GET request job1.Download2("http://www.b4x.com/print.php", _ArrayAsString("first key", "first value :)", "second key", "value 2"))
'Send a POST request job2.Initialize("Job2", Me)
job2.PostString("http://www.b4x.com/print.php", "first key=first value&key2=value2")
'Send a GET request job3.Initialize("Job3", Me)
job3.Download("http://www.b4x.com/forum/images/categories/android.png")
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0

Rajesh Krishnan

Member
Licensed User
Upvote 0
Top