Hi, I have a protected folder that I enter with a simple post, and it works correctly whith this simple code:
the problem is that check the log of "SSL / TLS ACCESS to Apache" I have seen that an error is always created before access (this screen is from plesk)
I don't know if the error is due to the fact that I have to put some header in HTTPJOB.
I don't know if this is the most correct place to do the query.
Thanks !!!
B4X:
Dim job1 As HttpJob
job1.Initialize("1", Me)
job1.PostString("https://xxxxx.php", "a=1234&b=22222")
job1.Username = "username"
job1.Password = "password"
the problem is that check the log of "SSL / TLS ACCESS to Apache" I have seen that an error is always created before access (this screen is from plesk)
I don't know if the error is due to the fact that I have to put some header in HTTPJOB.
I don't know if this is the most correct place to do the query.
Thanks !!!