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

I am seeing the following error:

Origin http://localhost:8080 is not allowed by Access-Control-Allow-Origin

with this code:

var http = new getXMLHttpRequestObject();
var url = "http://gdata.youtube.com/action/GetUploadToken";
var sendXML = '<?xml version="1.0"?><entry xmlns="http://www.w3.org/2005/Atom"'+
    'xmlns:media="http://search.yahoo.com/mrss/'+
    'xmlns:yt="http://gdata.youtube.com/schemas/2007">'+
    '<media:group><media:title type="plain">My First API</media:title>'+
    '<media:description type="plain">First API</media:description>'+
    '<media:category scheme="http://gdata.youtube.com/schemas/2007/categories.cat">People</media:category>'+
    '<media:keywords>first, api</media:keywords></media:group></entry>';
http.open("POST", url, true);
http.setRequestHeader("Authorization", "AuthSub token=" + AccessToken);
http.setRequestHeader("X-GData-Key", "key="+ dev_key);
http.setRequestHeader("Content-Type", "application/atom+xml; charset=UTF-8");

http.onreadystatechange = function() {
    if(http.readyState == 4) {
        alert(http.responseXML);
    }
}
http.send(sendXML);

What can cause this, and how do I solve it?

share|improve this question
Are you sure that youtube entry point you are using is jsonp enabled? You cannot make ajax call to external domain, unless you use a server side proxy or a jsonp endpont. – andreapier Feb 16 '12 at 11:07

6 Answers

up vote 20 down vote accepted

Javascript is limited in making ajax requests. The limit comes out when you try to make requests outside your domain.
Ex 1: your domain is example.com and you want to make a request to test.com => you cannot.
Ex 2: your domain is example.com and you want to make a request to inner.example.com => you cannot. Ex 3: your domain is example.com:80 and you want to make a request to example.com:81 => you cannot Ex : your domain is example.com and you want to make a request to example.com => you can.

Javascript is limited by the "same origin policy" for security reasons, ie a malicious script cannot contact remote server and send sensible data.

jsonp is a different way to use javascript. You make a request and results are encapsulated into a callback function which is run in the client. It's the same as linking a new script tag into the head part of your html (you know that you can load scripts from different domains than yours here).
However, to use jsonp the server must be configured properly. if this is not the case you cannot use jsonp and you MUST relay on a server side proxy (PHP, ASP, etc.). There are plenty of guides related to this topic, just google it!

share|improve this answer
1  
EG3? example.com:111 request to example.com:999? – gr9zev Apr 4 at 7:35
1  
Yes, good catch. I missed that! Added, thanks – andreapier Apr 4 at 8:10

XMLHttpRequest will not let you reach localhost:8080 because of the "same origin policy".

You can allow requests from modern browsers by adding a header to your request response on localhost:8080:

Access-Control-Allow-Origin: *

You can do so by adding directives to your HTTP server or adding headers via server-side code (PHP, Ruby, ...).

Read more on Cross-Origin ajax requests on https://developer.mozilla.org/en/http_access_control

share|improve this answer
3  
If I understand this correctly, then the server of the API or remote resource (in this case the YouTube server) must set the header, i.e. it is the API hoster who must set this header, and not the API caller. – 0x4a6f4672 May 23 '12 at 13:15
@0x4a6f4672 Correct! – Sunny Jul 13 '12 at 14:39
Does anyone else find this confusing? Using Fiddler I can see a request being made and a valid result being returned... and then I get an exception. So the server doesn't seem to care at all. Yet the server is the one that needs configured? – Sailing Judo May 15 at 14:21
Here the server doesn't care. It's the browser that tries to protect users by only letting back requests that are in the server's allow list. – Sunny May 17 at 8:40

If you are using Chrome, a simple workaround (only for development purposes) is to use option --disable-web-security.

share|improve this answer
7  
Which you certainly only want to do for development purposes, never when surfing – kynan Jul 27 '12 at 20:35
Agreed @kynan and updated my answer. – Deqing Nov 27 '12 at 14:07

Unrelated to this particular question, but for anyone in this situation using jQuery...This error is also caused if you try to make a JSONP request using jQuery and omit the magic callback parameter: callback=?

share|improve this answer
The magic parameter could have other names as well. Documentation: api.jquery.com/jQuery.getJSON/#jsonp – Gruber Dec 14 '12 at 10:07

If you are from a java background one possible solution could be to make a servlet which calls the Web-services for your javascript. something like the below code in the GET(Your-choice) method...

JsonElement jelement;
    JsonArray jarray;
    try {
        URL url = new URL("http://rest."YOUR URL"#ba0482");
        URLConnection connection = url.openConnection();
        connection.setDoInput(true);
        InputStream inStream = connection.getInputStream();
        BufferedReader input = new BufferedReader(new InputStreamReader(inStream));

        jelement = new JsonParser().parse(input);

        jarray = jelement.getAsJsonArray();

        response.setContentType("application/json");
        PrintWriter out = response.getWriter();
        out.print(jarray);
        out.flush();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

Now in the javascript simply specify the url as the servlet name!!

share|improve this answer

Add a global.asax in your solution.

Add

HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");

in

protected void Application_BeginRequest(object sender, EventArgs e)
{
}
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.