Feature #11469
JSONP support
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | REST API | |||
Target version: | 2.1.0 | |||
Resolution: | Fixed |
Description
Please enable 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.
Related issues
Associated revisions
Adds JSONP support to the API (#11469).
History
#1
Updated by Etienne Massip over 8 years ago
- Category set to REST API
#2
Updated by Jean-Philippe Lang over 8 years ago
- Assignee set to Jean-Philippe Lang
- Target version set to 2.1.0
#3
Updated by Jean-Philippe Lang over 8 years ago
- Subject changed from Enable JSONP to JSONP support
- Status changed from New to Closed
- Resolution set to Fixed
Support for JSONP added in r10088. You can use the callback
or jsonp
parameter to specify the JSONP callback.
Exemple:
GET /issues.json?callback=foo => foo({"issues":...})
#4
Updated by Hai-Nam Nguyen over 6 years ago
If you come into this page by searching, since #12992 JSONP support is disabled by default.
#5
Updated by Toshi MARUYAMA over 6 years ago
- Related to Feature #12992: Make JSONP support optional and disabled by default added