Bug? PostMultipart ignores user & password

Adrian998

Member
Licensed User
B4X:
Dim job As HttpJob
    job.Initialize("Upload",Me)
    job.Username = h_user
    job.Password = h_pwd
    
    job.PostMultipart(server & "/setdata.php?auth=" & authcode,CreateMap("action":"upload"),files)

Error: ResponseError: unknown error, status code: 401
the same code works on b4a

And job.Download2 works with user & password.
 

Adrian998

Member
Licensed User
I also found the error, the parameters must all be in map, if an authentication.

eg:

B4X:
job.PostMultipart(server & "/setdata.php",CreateMap("auth":authcode,"action":"upload"),files)
 
Top