Vote #72256
完了JSONP support
0%
説明
Please enable "JSONP":http://en.wikipedia.org/wiki/JSONP
This is necessary when a JS-Client wants to call the Redmine API of another Subdomain, Server, Protocol, Port... (Same Orign Policy)
It's not that hard to accomplish. You just need to set a request filter that wrappes the response in a given JS function. See #10761 for an example of the expected output.
journals
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Support for JSONP added in r10088. You can use the @callback@ or @jsonp@ parameter to specify the JSONP callback.
Exemple:
<pre>
GET /issues.json?callback=foo
=> foo({"issues":...})
</pre>
--------------------------------------------------------------------------------
If you come into this page by searching, since #12992 JSONP support is disabled by default.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
related_issues
relates,Closed,10761,Rest API JSON response can not be parsed by jQuery
relates,Closed,13718,Accept dots in JSONP callback
relates,Closed,12992,Make JSONP support optional and disabled by default