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 =)