Android Question Basic authtication for a rest webapi

rkmoray

Active Member
Licensed User
Longtime User
I have a rest api (http:/xxxxx.xxxxxxxxx.com/MobileAPI), that uses basic authentication.
The code is simple
job1.Initialize("Job1", Me)
job1.Username = "rick"
job1.Password = "yyyyy1234"
job1.Download("http://xxxxx.xxxxxxxxx.com/MobileAPI2")
and I get back the following message
Invalid username or password
 
Top