Android Question How to send post in custom chrome tabs

Reminisce

Active Member
I know how to call post commands using Okhttputils2, i was wondering if there was a way to achieve this by using "POST" instead of "GET"..

Ps: this is a payment page, I concealed the original url.

B4X:
Dim paymentlink2 As String = "http://url.com/pay.php?username="&username.ToLowerCase&"&email="&user_email.ToLowerCase&"&phonenumber="&user_phonenumber&"&amount="&amount

    Log(paymentlink2)
    Dim cct As ChromeCustomTabs

    cct.Initialize("cct",paymentlink2)
 
Top