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
|
|
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
|
||
|
|
|
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. |
||
|
|
|
|
You can always use a serverside proxy. |
||
|
|
|
|
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. |
||
|
|
|
|
Alternatively, you can make your XMLHttpRequest specify your user-agent as IE (browser sniffing is stupid):
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. |
||
|
|
|
|
With jQuery it could look like this:
|
||||||
|