$. ajax POST gibt "status" zurück: 403, "statusText": "Verboten" cordova android

Ich entwickle eine Android Phonegap-Anwendung mit jquery.mobile-1.4.3.js und cordova.3.5.0.

Ich rufe $ ajax für den Webdienst an. Unten ist ein Code-Snippet.

 $.ajax({
        type: 'POST',
        data: LoginData,
        crossDomain:true,
        dataType : 'json',
        timeout: 50000,
        url: 'https://dsp-wasatchtechies.cloud.dreamfactory.com/rest/user/session?app_name=XXXXX',
        success: function(data) {


            console.log(' SESSION' + JSON.stringify(data));

        },
        error: function(data) {

            //ActivityIndicator.hide();
            console.log('ERROR : SESSION' + JSON.stringify(data));
            //ShowAlertMessage('There was an error while SESSION');
        }
    });

It war arbeitet tadellos, aber jetzt reagiert es:

  [INFO:CONSOLE(155)] "ERROR SESSION{"readyState":4,"responseText":"","status":403,"statusText":"Forbidden"}", source: file:///android_asset/www/js/index.js (155)

was ist falsch dieser Code? warum funktioniert es nicht Jede Hilfe, Anregung wird geschätzt

danke im Voraus

Antworten auf die Frage(4)

Ihre Antwort auf die Frage