Here is my invalid JSON Body Error on Apiary.io? What went wrong?
My Request is like that:
var body = {
//JSON stuff..
};
$.ajax({
url : 'URL',
type : 'POST',
data : body,
async: false,
dataType : 'json',
success : function (data) {
body['sessionid'] = data['sessionid'];
SetSessionID(data['sessionid']);
console.log(data);
}
});