Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using following code to upload photo to facebook with ajax:

function _upCover(id, imgURL) {
    $('#uploadb').hide(0);
     imgURL ="myimageurl.jpg"  

     var postMSG= "my test";
 var url='https://graph.facebook.com/me/photos?access_token='+accessToken+"&message="+postMSG;

 var formData = new FormData();
 formData.append('url',imgURL);

  $.ajax({          type: 'POST',
                    url: url,
                    data: formData,
                    cache: false,
                    contentType:  false,
                    processData: false,

                    success: function(data){  
                                                 uploads(id);   },

                    error: function(data){
                                              failed(id);       }
                });


}

This works fine in Firefox but not in other browsers because it uses FormData() function. Is there any way to do it without using FormData() so it works in all browsers?

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this solution: how to get form data as a object in jquery Besides, FormData() should be supported not only in Mozilla, but also in Chrome and Safari 5+.

share|improve this answer

Your Answer

 
discard

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