vote up 0 vote down star

I need to make an ajax request, IE Works OK, Firefox URI DENIED.

I googled and I found the the only way is to use JSON to eliminate and restrictions.

Is there some one got any example?

Thanks

flag

78% accept rate
is your URI pointing on the same server as the page in which the code appears? – Maurice Perry Apr 6 at 13:27

5 Answers

vote up 0 vote down

If this is a cross-site issue (I don't think it is), try setting up a subdomain for your site (say, flickrapi.acme.com) that is a CNAME to api.flickr.com.

link|flag
vote up 0 vote down

You can always use a serverside proxy.

link|flag
vote up 0 vote down

Before you get in too deep, try using an absolute url in the request. The only difference I know of between IE and FIrefox that would apply here is that IE converts relative urls to absolute in http traffic.

link|flag
vote up 0 vote down

Alternatively, you can make your XMLHttpRequest specify your user-agent as IE (browser sniffing is stupid):

var req = new XMLHttpRequest();
req.setRequestHeader('User-Agent','MSIE 7.0');
req.open("GET", sURL, true);
req.onreadystatechange=function() {
    if (req.readyState==4) {
        alert(req.responseText);
    }
}
req.send(null);

Or better yet, send a strongly worded e-mail to the site admin about their not accepting requests from non-IE browsers. In this day and age, building an IE-only site is unacceptable. It undermines the accessibility & usefulness of the web in so many ways.

link|flag
vote up 1 vote down

With jQuery it could look like this:

$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?" +
          "tags=cat&tagmode=any&format=json&jsoncallback=?",
    function(data){
      $.each(data.items, function(i,item){
        $("<img/>").attr("src", item.media.m).appendTo("#images");
        if ( i == 3 ) return false;
      });
    });
link|flag
Are you sure this would work? Because I believe it won't due to same origin policy restrictions. – Ionut G. Stan Apr 6 at 12:46
it will work because this is a jsonp request, and you know this because you see the ? in the url. see jquery's jsonp documentation for more info. – mkoryak Apr 6 at 13:30
@mkoryak, thanks. I got it. – Ionut G. Stan Apr 6 at 13:57

Your Answer

Get an OpenID
or

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