jQuery Google Drive帖子名称

I'm trying to post a new file to google drive via jquery.ajax. I have it posting a file to google, however the file is named "Untitled", and my json information is in the file, rather than changing the filename. Any help would be appreciated.

            var testUpload = {
                'title': 'testupload',
                'Content-Type': 'text/plain',
                'mimeType': 'application/octet-stream'
            }
            var contentType = "text/plain";
            var multipartRequestBody =
                delimiter +
                'Content-Type: application/json

' +
                JSON.stringify(testUpload) +
                delimiter +
                'Content-Type: ' + contentType + '
' +
                'Content-Transfer-Encoding: base64
' +
                '
' +
                "testing this stuff" +
                close_delim;    
            jQuery.ajax({
                url: 'https://www.googleapis.com/upload/drive/v3/files?uploadType=media',
                method: 'POST',
                headers: {
                    'Content-Type': 'text/plain',
                    'Authorization': 'Bearer ' + accessToken
                },
                data: testUpload,
                //data: multipartRequestBody,
                //title: 'json',
                //cache: false,
                contentType: contentType,
                //processData: true,
                //type: 'POST',
            });