Android Question Error while try to send data with parameters

Makumbi

Well-Known Member
Licensed User
Please help
Here is the error
B4X:
SendsmschatV2 - 451: ',' expected.



B4X:
Dim j As HttpJob
            j.Initialize("", Me)
            j.PostString($"http://kccug.com/KabojjaApp/RecieveSMS.ashx?customerId=${act}&s=${edtMessage.Text}&d=${getdate(DateTime.Now)}&id=${NewID}&ph=${phone}&f=${sx}"$ )
            Wait For (j) JobDone(j As HttpJob)
            If j.Success Then
                Log(j.GetString)
            End If
 

mc73

Well-Known Member
Licensed User
Longtime User
You're not posting any parameter. Try using the code I posted on othe other thread you opened (by the way, it's easier for everyone if we don't post duplicates).
 
Upvote 0
Top