Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make a dummy upload to skydrive with AJAX code.

This is my code(just a sample which i found):

function uploadAjaxPost() {      
            $.ajax({
                type: "PUT",
                contentType: "multipart/form-data; boundary=A300x",                    
                processData: true,                   
                url: "https://apis.live.net/v5.0/me/skydrive/files?access_token=" +     session.access_token,                    
                data: createUploadRequestBody(),                                        
                success: function () { alert("Success!"); },
                error: function() { alert("Eroir");}
            });     

        }


        function createUploadRequestBody() {
            var body = "--A300x\r\n"
            + "Content-Disposition: form-data; name=\"file\"; filename=\"RV.TXT\"\r\n"
            + "Content-Type: application/octet-stream\r\n"
            + "\r\n"
            + "This is some content\r\n"
            + "\r\n"
            + "--A300x--\r\n";                
            return body;
        }

session.access_token is valid, also the login scope enable updating skydrive files...i use wl.skydrive_update . The function uploadAjaxPost() is called by clicking on the button

I cant find out why it doesn't work.

Please help me solve this problem, thanks for your advices.

If you have different codes which work....please post them =)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.