Solicitar token com JQuery da API da Web
Estou fazendo uma solicitação ajax em Javascript para obter um JWT do meu WebAPI AuthenticationProvider. Esta é a minha função js:
function authenticateUser(credentials) {
var body = {
grant_type: 'password',
client_id: 'myClientId',
client_secret: 'myClientSecret',
username: credentials.name,
password: credentials.password
};
$.ajax({
url: 'http://localhost:9000/token',
type: 'POST',
dataType: 'json',
contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
/* data: JSON.stringify(body), /* wrong */
data: body, /* right */
complete: function(result) {
//called when complete
alert(result);
},
success: function(result) {
//called when successful
alert(result);
},
error: function(result) {
//called when there is an error
alert(result);
},
});
session.isAuthenticated(true);
return true;
}
Embora o conteúdo seja enviado da maneira certa aos meus olhos, oOAuthValidateClientAuthenticationContext possui apenas valores nulos.
Meus dados de formulário copiados do console:
{"grant_type": "senha", "client_id": "myClientId", "client_secret": "myClientSecret", "nome de usuário": "demo", "password": "123"}