Request-Token mit JQuery von der Web-API

Ich mache eine Ajax-Anfrage in Javascript, um eine JWT von meinem WebAPI AuthenticationProvider zu erhalten. Das ist meine js-Funktion:

    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;
}

Obwohl der Inhalt in meinen Augen richtig gesendet wird, ist das OAuthValidateClientAuthenticationContext hat nur Nullwerte.

Meine Formulardaten wurden von der Konsole kopiert:

{"grant_type": "password", "client_id": "myClientId", "client_secret": "myClientSecret", "username": "demo", "password": "123"}

Antworten auf die Frage(2)

Ihre Antwort auf die Frage