Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing a page that pulls images from Flickr and Panoramio via jQuery's AJAX support.

The Flickr side is working fine, but when I try to $.get(url, callback) from Panoramio, I see an error in Chrome's console:

XMLHttpRequest cannot load http://www.panoramio.com/wapi/data/get_photos?v=1&key=dummykey&tag=test&offset=0&length=20&callback=processImages&minx=-30&miny=0&maxx=0&maxy=150. Origin null is not allowed by Access-Control-Allow-Origin.

If I query that URL from a browser directly it works fine. What is going on, and can I get around this? Am I composing my query incorrectly, or is this something that Panoramio does to hinder what I'm trying to do?

Google didn't turn up any useful matches on the error message.

EDIT

Here's some sample code that shows the problem:

$().ready(function () {
  var url = 'http://www.panoramio.com/wapi/data/get_photos?v=1&key=dummykey&tag=test&offset=0&length=20&callback=processImages&minx=-30&miny=0&maxx=0&maxy=150';

  $.get(url, function (jsonp) {
    var processImages = function (data) {
      alert('ok');
    };

    eval(jsonp);
  });
});

You can run the example online.

EDIT 2

Thanks to Darin for his help with this. THE ABOVE CODE IS WRONG. Use this instead:

$().ready(function () {
  var url = 'http://www.panoramio.com/wapi/data/get_photos?v=1&key=dummykey&tag=test&offset=0&length=20&minx=-30&miny=0&maxx=0&maxy=150&callback=?';

  $.get(url, function (data) {
    // can use 'data' in here...
  });
});
share|improve this question
1  
What does the URL look like that you are making the request from? This doesn't happen to be a dynamically generated iframe that you document.write into, for example? – Pekka 웃 Aug 29 '10 at 16:15
4  
Can you post the HTTP response from request to each service. I bet Panoramio isn't serving up Access-Control-Allow-Origin. See w3.org/TR/cors for examples. – Kevin Hakanson Aug 29 '10 at 16:16
2  
@Kevin, you don't need those headers if the server sends JSONP. – Darin Dimitrov Aug 29 '10 at 16:17
@Pekka, I'm running the page from my local machine at the moment (file:///C:/). No iframe is involved. – Drew Noakes Aug 29 '10 at 16:22
1  
@drew what happens if you run it from a http URL? It shouldn't make a difference this way around, but just to exclude the possibility. – Pekka 웃 Aug 29 '10 at 16:23
show 1 more comment

10 Answers

up vote 251 down vote accepted

For the record, as far as I can tell, you had two problems:

  1. You weren't passing a "jsonp" type specifier to your $.get, so it was using an ordinary XMLHttpRequest. However, your browser supported CORS (Cross-Origin Resource Sharing) to allow cross-domain XMLHttpRequest if the server OKed it. That's where the Access-Control-Allow-Origin header came in.

  2. I believe you mentioned you were running it from a file:// URL. There are two ways for CORS headers to signal that a cross-domain XHR is OK. One is to send Access-Control-Allow-Origin: * (which, if you were reaching Flickr via $.get, they must have been doing) while the other was to echo back the contents of the Origin header. However, file:// URLs produce a null Origin which can't be authorized via echo-back.

The first was solved in a roundabout way by Darin's suggestion to use $.getJSON. It does a little magic to change the request type from its default of "json" to "jsonp" if it sees the substring callback=? in the URL.

That solved the second by no longer trying to perform a CORS request from a file:// URL.

To clarify for other people, here are the simple troubleshooting instructions:

  1. If you're trying to use JSONP, make sure one of the following is the case:
    • You're using $.get and set dataType to jsonp.
    • You're using $.getJSON and included callback=? in the URL.
  2. If you're trying to do a cross-domain XMLHttpRequest via CORS...
    1. Make sure you're testing via http://. Scripts running via file:// have limited support for CORS.
    2. Make sure the browser actually supports CORS. (Opera and Internet Explorer are late to the party)
share|improve this answer
78  
Thank you, I love you – Artur Sapek Oct 1 '11 at 21:15
8  
So what is the solution to this? – jQuerybeast Dec 9 '11 at 21:04
9  
callback=? FTW – Tim Mar 29 '12 at 9:10
5  
Some browsers like chrome allow CORS if started with the parameter --allow-file-access-from-files – echox Jun 12 '12 at 16:20
callback=? didn't work for me, But jsonp=? did. Any explanation for that? – crunkchitis Jun 28 '12 at 18:06
show 2 more comments

You need to maybe add a HEADER in your called script, here is what I had to do in PHP:

header('Access-Control-Allow-Origin: *');

More details in Cross domain AJAX ou services WEB (in French).

share|improve this answer
5  
How is this done on a normal html file (no php)? – Uri Apr 2 '11 at 11:45
1  
@Uri: Depends on your HTTP server. With Apache, you'll want to look into mod_headers. – ssokolow Apr 8 '11 at 0:37
3  
@Uri <meta http-equiv="Access-Control-Allow-Origin" content="*"> – Herberth Amaral Jan 14 '12 at 21:14
4  
@HerberthAmaral I tried adding this inside <head></head>, but it doesn't work for me. I am trying it in iOS Safari and Chrome, but in the console, I get the origin null is not allowed by Access-Control-Allow-Origin error. – thandasoru Apr 2 '12 at 6:08
2  
It doesn't work in the head of the html file for security reasons. It has to be a header. stackoverflow.com/questions/7015782/… – Justin Blank Sep 2 '12 at 19:23

For a simple HTML project:

cd project
python -m SimpleHTTPServer 8000

Then browse your file.

share|improve this answer
2  
you are a lifesaver.. – prongs Jun 26 '12 at 11:28
1  
wow this is useful, thanks! – Cameron Saul Nov 28 '12 at 6:12
1  
Pythonic and beautiful :) – Stéphane Dec 6 '12 at 1:41
Python: I L-O-V-E you – neurino Dec 18 '12 at 10:46

Works for me on Google Chrome v5.0.375.127 (I get the alert):

$.get('http://www.panoramio.com/wapi/data/get_photos?v=1&key=dummykey&tag=test&offset=0&length=20&callback=?&minx=-30&miny=0&maxx=0&maxy=150',
function(json) {
    alert(json.photos[1].photoUrl);
});

Also I would recommend you using the $.getJSON() method instead as the previous doesn't work on IE8 (at least on my machine):

$.getJSON('http://www.panoramio.com/wapi/data/get_photos?v=1&key=dummykey&tag=test&offset=0&length=20&callback=?&minx=-30&miny=0&maxx=0&maxy=150', 
function(json) {
    alert(json.photos[1].photoUrl);
});

You may try it online from here.


UPDATE:

Now that you have shown your code I can see the problem with it. You are having both an anonymous function and inline function but both will be called processImages. That's how jQuery's JSONP support works. Notice how I am defining the callback=? so that you can use an anonymous function. You may read more about it in the documentation.

Another remark is that you shouldn't call eval. The parameter passed to your anonymous function will already be parsed into JSON by jQuery.

share|improve this answer
Hmm ok let me try again. I'm on a different version of Chrome btw "6.0.472.51 beta". – Drew Noakes Aug 29 '10 at 16:23
Your code worked for me to. I updated my question with some code that draws the problem out though. – Drew Noakes Aug 29 '10 at 16:26
Thanks for the tip re getJSON... I forked your jsFiddle example to show the problem (jsfiddle.net/ZfvKm) and now see the error message XMLHttpRequest cannot load panoramio.com/wapi/data/…. Origin fiddle.jshell.net is not allowed by Access-Control-Allow-Origin. – Drew Noakes Aug 29 '10 at 16:31
@Drew, please see my update about the eval statement. – Darin Dimitrov Aug 29 '10 at 16:32
@Darin, thanks for the update. I see your point, and I've played with a few combinations of this, but I'm yet to find a way to access the returned object. Could you update your jsFiddle example to show accessing the data? If you set the callback to ? then the returned JSON is surrounded with parenthesis. You don't define a parameter for your callback function, and the value of this doesn't seem to have a response object (at least, the .data value is null). – Drew Noakes Aug 29 '10 at 16:49
show 2 more comments

As long as the requested server supports the JSON data format, use the JSONP (JSON Padding) interface. It allows you to make external domain requests without proxy servers or fancy header stuff.

You can read more in The jQuery Cross-Domain Ajax Guide.

I've been getting the same error!

share|improve this answer

We managed it via the http.conf file (edited and then restarted the HTTP service):

<Directory "/home/the directory_where_your_serverside_pages_is">
    Header set Access-Control-Allow-Origin "*"
    AllowOverride all
    Order allow,deny
    Allow from all
</Directory>

In the Header set Access-Control-Allow-Origin "*", you can put a precise URL.

share|improve this answer
Hey thanks , It worked for me :) – Vijay Kumbhar Apr 17 '12 at 12:20
this does not work on XAMPP's Apache. the problem still exists. – Shivan Raptor May 6 at 9:47

It's the same origin policy, you have to use a JSON-P interface or a proxy running on the same host.

share|improve this answer
2  
panoramio already sends JSONP. – Darin Dimitrov Aug 29 '10 at 16:16

In my case, same code worked fine on Firefox, but not on Google Chrome. Google Chrome's JavaScript console said:

XMLHttpRequest cannot load http://www.xyz.com/getZipInfo.php?zip=11234. 
Origin http://xyz.com is not allowed by Access-Control-Allow-Origin.
Refused to get unsafe header "X-JSON"

I had to drop the www part of the Ajax URL for it to match correctly with the origin URL and it worked fine then.

share|improve this answer

I use Apache server, so I've used mod_proxy module. Enable modules:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

Then add:

ProxyPass /your-proxy-url/ http://service-url:serviceport/

Finally, pass proxy-url to your script.

share|improve this answer

There is a small problem in the solution posted here: http://stackoverflow.com/a/9604662/999400, where if you change a file, you'll have to restart the server to actually use the updated file (at least, in my case).

So searching a bit, I found this one: https://github.com/andrewpthorp/simple-http-server. To use:

sudo npm -g install simple-http-server # to install
nserver # to use

And then it will serve at http://localhost:8000.

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.