#4897 closed enhancement (fixed)
REST-style JSONP callback option
| Reported by: | dandv | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | 1.5 |
| Component: | ajax | Version: | 1.3.2 |
| Keywords: | ajaxrewrite | Cc: | |
| Blocked by: | Blocking: |
Description
I'm trying to get cross-domain JSONP data from this API: http://judstephenson.com/programming/2008/11/realtime-stock-quotes-api-updated
Unfortunately, the API is not standard in accepting a ?callback=foo parameter, but rather requires appending 'foo' to the URL:
http://judstephenson.com/api/Quotes/Realtime/aapl/json/foo
I've tried to use jquery.getJSON, but the way of specifying a callback is restricted to the "url?callback=?" scheme. I would need just "url/?".
Proposal: to accommodate REST APIs, if the URL ends in '/?', getJSON should simply replace the '?' with the callback name.
Change History (6)
comment:1 Changed 12 years ago by
comment:2 Changed 10 years ago by
| Status: | new → open |
|---|
comment:3 Changed 10 years ago by
| Milestone: | 1.4 → 1.5 |
|---|
comment:4 Changed 10 years ago by
| Keywords: | ajaxrewrite added |
|---|
comment:5 Changed 10 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | open → closed |
Fixes #4897. Added ?? as a context-insensitive placeholder for the callback name of a JSONP request. Unit tests provided.
Changeset: 0c51e9d55f39366cab14719b80cb7e989c716351
comment:6 Changed 10 years ago by
| Priority: | major → high |
|---|

You might wanna give jquery-jsonp a try: http://code.google.com/p/jquery-jsonp/
Check the TipsAndTricks wiki page especially.