When I run b4j web server, I can get the parameters with req.GetPrameter, but I can't get the correct parameters from an encoded URL.
Here is my code:
B4X:
Sub Handle(req As ServletRequest, resp As ServletResponse)
Log(req.FullRequestURI)...
I'm trying to call a password change method from an API. A token is used for authentication. The parameters that the method expects are:
B4X:
{
"OldPassword": "sample string 1",
"NewPassword": "sample string 2",
"ConfirmPassword": "sample string 3"
}
I tried to make a POST using the...
I'm trying to call a password change method from an API. A token is used for authentication. The parameters that the method expects are:
B4X:
{
"OldPassword": "sample string 1",
"NewPassword": "sample string 2",
"ConfirmPassword": "sample string 3"
}
I tried to make a POST using the...
Hi,
I am making a revised B4XFloatTextField called tfeCustom. I have done the following:
Created a layout (tfeCVLayout.bal) with a B4XFloatTextField called tfe and a toolbar of images for clear, back, forward, format title (proper, lowercase, uppercase, camel and SQLite SQL format
Load the...