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 publish Image on facebook

$.ajax({type: "POST",
            url: "https://graph.facebook.com/me/photos",
            data: {message: "",
                url: "my Image url",
                access_token: accessToken,
                format: "json"},
           dataType: "json",

              success: function(data){


               uploads(id);
            },
            error: function(data){alert("Failed! " + data.error);}
    });

This code works fine on Chrome, firefox and any other browser invented in the world but it is not working in Internet explorer. Whats wrong in this code??

share|improve this question
2  
Which version of IE? Check IE's Dev Tools console for errors as well. – Fabrício Matté Sep 16 '12 at 10:30
i am using IE9.. – Badal Surana Sep 16 '12 at 10:32

2 Answers

This is a cross-domain request. So use

 dataType: "jsonp",

set jsonpCallback to ajax config. That is:

$.ajax({
    type: "POST",
    url: "https://graph.facebook.com/me/photos",
    data: {
        message: "",
        url: "my Image url",
        access_token: accessToken,
        format: "json"
    },
    dataType: "jsonp",
    jsonpCallback: 'blah', // here
    success: function(data) {


        uploads(id);
    },
    error: function(data) {
        alert("Failed! " + data.error);
    }
});​
share|improve this answer
@BadalSurana thanks.. – thecodeparadox Sep 16 '12 at 10:37
@BadalSurana Surana mark the answer as accepted if his solution works for you – Shaheer Sep 16 '12 at 10:39
this is making call to success function but not posting image to facebook(no data is sent to facebook) – Badal Surana Sep 16 '12 at 10:42
@BadalSurana this is not the problem with post, check that you send that data in correct format that FB want.. – thecodeparadox Sep 16 '12 at 10:44
it is working fine with dataType: "json" in chrome but with dataType: "jsonp" its not working. – Badal Surana Sep 16 '12 at 10:52
show 5 more comments

Whats wrong in this code?

Wrong question :-)

Right question: Why are you trying to do this yourself via AJAX – instead of just using the JS SDK and call it’s API method?

That will take care of everything for you.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.