0

我的问题是我相信我已经正确构建了请求,但是我得到 [400 {"message":"Problems parsing JSON"}]

这是我的代码:

var xhr = Ti.Network.createHTTPClient({
        onload : function() {
             Ti.API.debug(this.responseText);

            json = JSON.parse(this.responseText);

            callback(json);
        },
        onerror : function(e) {
            alert('error!');
            Ti.API.info(e.error + " " + this.status + " " + this.responseText);
        }
    });

    xhr.validatesSecureCertificate = true;
    xhr.open("POST", "https://api.github.com/authorizations");
    xhr.setTimeout(10000);
    authstr = 'Basic ' + Titanium.Utils.base64encode(User.username + ':' + User.password);
    xhr.setRequestHeader('Authorization', authstr);
    xhr.send({username: User.username, password: User.password});
4

1 回答 1

1

我只是错过了 JSON.stringify 方法......在我的身体上:P。谢谢!

于 2012-06-26T03:44:08.437 回答