Closed vnickolov closed 9 years ago
You need to make POST request like this:
$.ajax({
type: "POST",
url: self.requestUrl,
data: {
'client_secret': self.secret,
'grant_type': self.grantType,
'client_id': self.clientId,
'username': username,
'password': password
}
});
Thank you!
@vnickolov OK to close this issue?
Yes, of course, sorry I didn't close it earlier.
Hi,
Is there a way to use the username+password authorization?
Thank you in advance.