Which API calls support CORS?
I can get the "Access-Control-Allow-Origin" header back with this:
curl -v -H "Origin: http://example.com" \
-H "Access-Control-Request-Method: GET" \
-H "Access-Control-Request-Headers: X-Requested-With" \
-X GET \
"https://blockchain.info/unspent?cors=true"
This does not respond with that header:
curl -v -H "Origin: http://example.com" \
-H "Access-Control-Request-Method: GET" \
-H "Access-Control-Request-Headers: X-Requested-With" \
-X GET \
"https://blockchain.info/rawaddr/1EJcR6wPdtjYp2WYo1XPYryv9zJE1e6XtU?cors=true"
Am I doing something wrong?