Note
I'm cross-posting [on the mozilla services
weblog](https://blog.mozilla.org/services/). Since this is the first
time we're doing that, I though it could be useful to point you there.
Check it out and expect more technical articles there in the future.
For security reasons, it's not possible to do cross-domain requests. In
other words, if you have a page served from the domain lolnet.org, it
will not be possible for it to get data from notmyidea.org.
Well, it's possible, using tricks and techniques like
[JSONP](http://en.wikipedia.org/wiki/JSONP), but that doesn't work all
the time (see [the section below](#how-this-is-different-from-jsonp)). I
remember myself doing some simple proxies on my domain server to be able
to query other's API.
Thankfully, there is a nicer way to do this, namely, "Cross Origin
Resource-Sharing", or [CORS](http://www.w3.org/TR/cors/).
## You want an icecream? Go ask your dad first.
If you want to use CORS, you need the API you're querying to support it;
on the server side.
The HTTP server need to answer to the OPTIONS verb, and with the
appropriate response headers.
OPTIONS is sent as what the authors of the spec call a "preflight
request"; just before doing a request to the API, the *User-Agent* (the
browser most of the time) asks the permission to the resource, with an
OPTIONS call.
The server answers, and tell what is available and what isn't:

- 1a. The User-Agent, rather than doing the call directly, asks the
server, the API, the permission to do the request. It does so with
the following headers:
- **Access-Control-Request-Headers**, contains the headers the
User-Agent want to access.
- **Access-Control-Request-Method** contains the method the
User-Agent want to access.
- 1b. The API answers what is authorized:
- **Access-Control-Allow-Origin** the origin that's accepted. Can
be \* or the domain name.
- **Access-Control-Allow-Methods** a *list* of allowed methods.
This can be cached. Note than the request asks permission for
one method and the server should return a list of accepted
methods.
- **Access-Allow-Headers** a list of allowed headers, for all of
the methods, since this can be cached as well.
- 2. The User-Agent can do the "normal" request.
So, if you want to access the /icecream resource, and do a PUT there,
you'll have the following flow:
> OPTIONS /icecream
> Access-Control-Request-Methods = PUT
> Origin: notmyidea.org
< Access-Control-Allow-Origin = notmyidea.org
< Access-Control-Allow-Methods = PUT,GET,DELETE
200 OK
You can see that we have an Origin Header in the request, as well as a
Access-Control-Request-Methods. We're here asking if we have the right,
as notmyidea.org, to do a PUT request on /icecream.
And the server tells us that we can do that, as well as GET and DELETE.
I'll not cover all the details of the CORS specification here, but bear
in mind than with CORS, you can control what are the authorized methods,
headers, origins, and if the client is allowed to send authentication
information or not.
## A word about security
CORS is not an answer for every cross-domain call you want to do,
because you need to control the service you want to call. For instance,
if you want to build a feed reader and access the feeds on different
domains, you can be pretty much sure that the servers will not implement
CORS, so you'll need to write a proxy yourself, to provide this.
Secondly, if misunderstood, CORS can be insecure, and cause problems.
Because the rules apply when a client wants to do a request to a server,
you need to be extra careful about who you're authorizing.
An incorrectly secured CORS server can be accessed by a malicious client
very easily, bypassing network security. For instance, if you host a
server on an intranet that is only available from behind a VPN but
accepts every cross-origin call. A bad guy can inject javascript into
the browser of a user who has access to your protected server and make
calls to your service, which is probably not what you want.
## How this is different from JSONP?
You may know the [JSONP](http://en.wikipedia.org/wiki/JSONP) protocol.
JSONP allows cross origin, but for a particular use case, and does have
some drawbacks (for instance, it's not possible to do DELETEs or PUTs
with JSONP).
JSONP exploits the fact that it is possible to get information from
another domain when you are asking for javascript code, using the
\