I try to record my voice and send it to /speech method on Wit.ai. So, from my browser, I collect a blob like this and want to execute an $.ajax() request :
      recorder && recorder.exportWAV(function (blob) {
            callback(blob);
            // Ajax request here !
            var data = new FormData();
                data.append('file', blob);
                $.ajax({
                  url :  "https://api.wit.ai/speech?v=20171010",
                  headers: {
                    'X-Requested-With': 'JSONHttpRequest',
                    'Content-Type': 'audio/wav',
                    'Authorization' : 'Bearer OHROML6TAXxxxxxxxxxxxxSRYOVFCC'
                  },
                  type: 'POST',
                  data: data,
                  contentType: false,
                  processData: false,
                  success: function(data) {
                    alert(data);
                  },
                  error: function(error) {
                    alert("not so boa!"+JSON.stringify(error));
                  }
                });
            recorder.clear();
        }, (AudioFormat || "audio/wav"));
All my results are a 400 error ! Bad request ! Or "Mismatch content type".
Any help would be appreciate here.
I tried without success : 
recorder && recorder.exportWAV(function (blob) {
                    callback(blob);
                    $.ajax({
                      type: 'POST',
                      headers: {
                        'Authorization' : 'Bearer OHROML6TAEDFxxxx5W2SRYOVFCC'
                      },
                      url: 'https://api.wit.ai/speech?v=20171010',
                      data: blob,
                      contentType: 'audio/wav', // set accordingly
                      processData: false,
                      success: function(data) {
                        alert(data);
                      },
                      error: function(error) {
                        alert("not so boa!"+JSON.stringify(error));
                      }
                    });
                                      // Clear the Recorder to start again !
                    recorder.clear();
                }, (AudioFormat || "audio/wav"));
I have still the same issues : 
Bad request or Wit doesn"t recognize the sample as a wav audio.
 
    