That's about it. I'm trying to get some delicious cross-domain JSON and for some reason the method that's going through is OPTIONS, even though I've explicitly specified method:'GET' in the config for the ScriptTagProxy. Ideas?
A:
That seems impossible, since "ScriptTagProxy" is like adding a <script src="url"></script>
in the html document.
So, the HTTP request should a GET, whatever the method you specify.
If you're sure that's "OPTIONS" which is called, maybe it's the browser you're using which makes an OPTION
request before a GET
? (strange)
Drasill
2010-07-23 07:22:47
A:
To my knowledge if you are making an OPTIONS hit, it means you are actually not using the scriptTagProxy but rather an HttpProxy, so maybe something is wrong in your config ? As timdev commented, code would help to identify the problem.
SBUJOLD
2010-07-23 12:56:15