Where is the code? Where is the full error?I tried but result 404
dim j as httpjob
j.initialize("",me)
j.download2("http://hisms.ws/api.php",array as String("username","xx","password","xx"."numbers","xx","sender","xx","date","2009-5-24", "time","11:33"))
okhttputils2
Where is the code? Where is the full error?
Something like
B4X:dim j as httpjob j.initialize("",me) j.download2("http://hisms.ws/api.php",array as String("username","xx","password","xx"."numbers","xx","sender","xx","date","2009-5-24", "time","11:33"))
job1.Download("https://www.hisms.ws/api.php?get_balance"&"username="&us&"password="&pw)
job1.Download("https://www.hisms.ws/api.php?get_balance="&"username="&us&"password="&pw)
job1.Download("https://www.hisms.ws/api.php?"&"get_balance="&"username="&us&"password="&pw)
Dim j As HttpJob
j.initialize("",Me)
j.download2("http://hisms.ws/api.php",Array As String("username","xx","password","xx","numbers","xx","sender","xx","date","2009-5-24", "time","11:33"))
Wait For (j) JobDone(job As HttpJob)
If job.Success Then
Dim res As String = job.GetString
Log("Result = "&res)
Else
Log(job.ErrorMessage)
End If
job.Release
Result = 1
All should work with okhttputils2. Do not expect me to write the code for you.
See above. There is a working example which is easy to adapt to the other calls.I want help
They give me this
https://www.hisms.ws/api.php?send_s...ender=xx&message=xx&date=2009-5-24&time=11:33
What about this words (get_balance - forget_password - send_sms)
In the first and second the links are equal in an parameters only (get_balance - forget_password)