D
dhubbuck
Guest
Hi Irfan, Just to let you know. My problem was related to the way the body data was created for the POST request. This didn't work let data = JSON.stringify({ j_username: user.username, j_password: user.password }; This works let data = "j_username=" + user.username + "&" + "j_password=" + user.password; looks like "&" was needed between the two values. Thanks again for replying
Continue reading...
Continue reading...