I am trying to put comments on Facebook wall using jquery.

But my ajax call not alowing external url .

can anyone explain how can we use external url with jquery ?

below is my code :

var fbUrl="https://graph.facebook.com/16453004404_481759124404/comments?access_token=my_token";

$.ajax({        
    url: fbURL ,
    data: "message="+commentdata,
    type: 'POST',
    success: function (resp) {
        alert(resp);
    },
    error: function(e){
        alert('Error: '+e);
    }  
});

its giving xmlhtttprequest error.

link|improve this question
You're getting that error because the URL fails the "Same origin policy", see en.wikipedia.org/wiki/Same_origin_policy. – Ben Everard Jan 6 '11 at 9:13
feedback

4 Answers

up vote 2 down vote accepted

All of these answers are wrong!

Like I said in my comment, the reason you're getting that error because the URL fails the "Same origin policy", but you can still us the AJAX function to hit another domain, see Nick Cravers answer on this similar question:

You need to trigger JSONP behavior with $.getJSON() by adding &callback=? on the querystring, like this:

$.getJSON("http://en.wikipedia.org/w/api.php?action=query&prop=revisions&rvprop=content&titles="+title+"&format=json&callback=?",
function(data) {
    doSomethingWith(data); 
}); 

You can test it here.

Without using JSONP you're hitting the same-origin policy which is blocking the XmlHttpRequest from getting any data back.

With this in mind, the follow code should work:

var fbURL="https://graph.facebook.com/16453004404_481759124404/comments?access_token=my_token";

$.ajax({
    url: fbURL+"&callback=?",
    data: "message="+commentdata,
    type: 'POST',
    success: function (resp) {
        alert(resp);
    },
    error: function(e) {
        alert('Error: '+e);
    }  
});
link|improve this answer
Still not working . giving same error. – user319198 Jan 6 '11 at 10:18
$.getJSON used for getting date.here i want to post data on wall – user319198 Jan 6 '11 at 10:19
What error text are you getting? – Ben Everard Jan 6 '11 at 10:21
same xmlhtttprequest error – user319198 Jan 6 '11 at 10:22
The error callback takes three parameters (not sure if that's the right term), the first is the XHR, the second is textStatusand the third is errorThrown, can you alert these and tell us what they say? – Ben Everard Jan 6 '11 at 10:29
show 2 more comments
feedback

Hi url should be calling a function which in return will give response

$.ajax({
url:'function to call url',
...
...

});

try using/calling API facebook method

link|improve this answer
feedback

google the javascript same origin policy

in a nutshell, the url you are trying to use must have the same root and protocol. so http://yoursite.com cannot access https://yoursite.com or http://anothersite.com

is you absolutely MUST bypass this protection (which is at the browser level, as galimy pointed out), consider the ProxyPass module for your favorite web server.

link|improve this answer
feedback

it is Cross-site scripting problem. Common modern browsers doesn't allow to send request to another url.

link|improve this answer
3  
You mean 'same origin policy'. – karim79 Jan 6 '11 at 9:17
feedback

Your Answer

 
or
required, but never shown