Tagged Questions
JSON with Padding (JSONP) is a technique for working around cross-domain AJAX limitations.
75
votes
4answers
4k views
Please explain JSONP
I don't understand jsonp.
I understand JSON. I don't understand JSONP. Wikipedia's document on JSON is (was) the top search result for JSONP. It says JSONP or "JSON with padding" is a JSON ...
73
votes
7answers
115k views
XmlHttpRequest error: Origin null is not allowed by Access-Control-Allow-Origin
I'm developing a page that pulls images from Flickr and Panoramio via jQuery's AJAX support.
The Flickr side is working fine, but when I try to $.get(url, callback) from Panoramio, I see an error in ...
34
votes
4answers
29k views
How do I catch jQuery $.getJSON (or $.ajax with datatype set to 'jsonp') error when using JSONP?
Is it possible to catch an error when using JSONP with jQuery? I've tried both the $.getJSON and $.ajax methods but neither will catch the 404 error I'm testing. Here is what I've tried (keep in mind ...
33
votes
5answers
14k views
jQuery ajax (jsonp) ignores a timeout and doesn't fire the error event
To add some basic error handling, I wanted to rewrite a piece of code that used jQuery's $.getJSON to pull in some photo's from Flickr. The reason for doing this is that $.getJSON doesn't provide ...
28
votes
2answers
5k views
Best content type to serve JSONP?
I have a webservice that when called without specifying a callback will return a JSON string using application/json as the content type.
When a callback is specified it will wrap the JSON string in a ...
20
votes
3answers
8k views
Post data to JsonP
Is it possible to post data to JsonP? Or does all data have to be passed in the querystring as a GET request?
I have alot of data that I need to send to the service, cross domain, and it is too large ...
15
votes
3answers
2k views
can any one explain me what is JSONP in layman terms
I known JSONP is (JSON padding) . I Know what is JSON and using it in $.getjson in jquery is also known
But using jsoncallback cannot be understood and what is JSONP
15
votes
5answers
4k views
12
votes
4answers
3k views
What are the differences between JSON and JSONP?
Format wise, file type wise and practical use wise?
12
votes
4answers
9k views
Error handling in getJSON calls
How can you handle errors in a getJSON call? Im trying to reference a cross-domain script service using jsonp, how do you register an error method?
11
votes
1answer
1k views
JSONP and Backbone.js
I would like to use Backbone.js with a REST api I control. I was hoping to have the REST api and the Backbone scripts live on a different domain but unfortunately this will be blocked, as it is a ...
11
votes
1answer
2k views
Modify HTTP Headers for a JSONP request
I am using jquery to build a request to the Twitter Search API. I am using jsonp, as is needed for cross-domain requests. However, the Twitter API specifies that you should set a unique User-Agent for ...
11
votes
3answers
2k views
Which web applications serve JSONP? [closed]
It'd be interesting to know who serves JSONP. If you know of a site that does (well-known applications are preferred (e.g., GMail, Facebook, Adsense)), please add it as an answer along with a ...
10
votes
10answers
931 views
How can I validate/secure/authenticate a JavaScript-based POST request?
A product I'm helping to develop will basically work like this:
A Web publisher creates a new page on their site that includes a <script> from our server.
When a visitor reaches that new page, ...
10
votes
1answer
1k views
Why same origin policy for XMLHttpRequest
Why do browsers apply the same origin policy to XMLHttpRequest? It's really inconvenient for developers, but it appears it does little in actually stopping hackers.
There are workarounds, they can ...
9
votes
3answers
623 views
Is this safe for providing JSONP?
<?php header('content-type: application/json');
$json = json_encode($data);
echo isset($_GET['callback'])
? "{$_GET['callback']}($json)"
: $json;
Or should I for example filter the ...
8
votes
6answers
5k views
JavaScript: How do I create JSONP?
I have a two domains, example1.com and example2.com
From example1.com, I would like call a JSON API I have on example2.com. Knowing that this is not allowed, it occurred to me - this is exactly why ...
8
votes
2answers
3k views
How do I make a JSONP call with JQuery with Basic Authentication?
Using JQuery, how would I call a JSONP API that required basic authentication?
Can I programatically handle this, or does the user have to interact and enter the username and password into the logon ...
7
votes
1answer
137 views
Is application/json-p text/json-p already implementable?
I've read http://www.json-p.org/ which states a safer and stricter subset of JSON-P.
The most critical piece of this proposal is that browser vendors must
begin to enforce this rule for script
...
7
votes
3answers
331 views
Securing JSONP?
I have a script that uses JSONP to make cross domain ajax calls. This works great but my question is, is there a way to prevent other sites from accessing and getting data from these URL's? I ...
7
votes
2answers
5k views
How to make cross-domain AJAX calls to Google Maps API?
I'm trying to make a jQuery $.getJSON call to the Google Maps Geocoding webservice, but this doesn't work because of cross-domain security issues.
I haven't been able to figure it out online, but ...
7
votes
2answers
2k views
jsonp with jquery
Can you give a very simple example of reading a jsonp request with jquery? I just can't get it to work.
7
votes
3answers
1k views
Is there an existing tool for jsonp like fetching of xml in jquery?
For a web service I'm developing I would like my embedded code (on the client's site) to fetch an xml file from my sever script which resides on my domain.
As this is a cross-domain request I ...
7
votes
2answers
3k views
JSONP callback doesn't execute when running at localhost
This is bizarre, I was wondering if anyone could shed some light on why this happened.
Basically, I've been pulling my hair out trying to test JSONP out so I can implement a JSON web service that ...
7
votes
2answers
9k views
What are some good examples of JQuery using JSONP talking to .net?
As the question says, what are some good examples (or just examples really), of Jquery using JSONP to talk to a .net page or webservice?
I'm attempting to write a page which uses JQuery to call ...
6
votes
2answers
114 views
jQuery.ajax returns jsonp instead of json
I have a simple ajax call like this:
$.ajax({
url: u, type: "POST", dataType: "json",
data: data,
success: function (d) { response($.map(d, function (o) { return { label: o.Text, ...
6
votes
6answers
4k views
parsererror after jQuery.ajax request with jsonp content type
I am using jQuery Version 1.5.1 to do the following ajax call:
$.ajax({
dataType: 'jsonp',
data: { api_key : apiKey },
url: "http://de.dawanda.com/api/v1/" + resource + ".json",
...
6
votes
3answers
559 views
Retrieving response from remote server after uploading a file in iframe
I have a form that uploads a file in an firame to a remote server. As a result at the submission url server returns json data with the result of operation, which my iframe catches.
{'result': 'true' ...
6
votes
2answers
2k views
twitter search api with jquery error
I need to request a twitter search with jquery using twitter api. After read documentation I write this code:
...
6
votes
1answer
3k views
How to make a jsonp POST request that specifies contentType with jQuery?
I need to make a jsonp POST request with the content type 'application/json'. I can get the POST request to the server like this:
jQuery.ajax({
type: 'POST',
url: url,
...
6
votes
1answer
2k views
6
votes
4answers
2k views
JSONP in CodeIgniter
I have a problem with using the jQuery JSONP method $.getJSON in CodeIgniter. The URL from which the JSON is grabbed from is the following:
http://spinly.000space.com/index.php/admin/isloggedin
...
5
votes
2answers
815 views
Calling HTTPS from HTTP through AJAX for login
I know its violates the Same origin policy, and that is why it is not possible through simple ajax request. I could use JSONP. But using JSONP for login doesn't sound secure ( no post only get ).
So ...
5
votes
3answers
381 views
Is there a way to use JSONP with a Delphi DataSnap REST server?
It appears that there is no way to implement a JSONP (JSON with Padding) solution using DataSnap, but I want to throw this question out here in case someone has solved this problem.
Background: JSONP ...
5
votes
4answers
239 views
Having problems with jQuery, ajax and jsonp
I am using jsonp and ajax to query a web-service written in java on another server. I am using the following jquery command:
$.ajax({
type: "GET",
url: wsUrl,
data: {},
dataType: ...
5
votes
4answers
425 views
How to make a JSONP request from Javascript without JQuery?
Can I make a cross-domain JSONP request in Javascript without using JQuery or other external library? I would like to use Javascript itself and then parse the data and make it an object so I could use ...
5
votes
2answers
1k views
Which browsers allow cross domain ajax calls with Access-Control-Allow-Origin: *?
Which browsers allow cross domain ajax calls with Access-Control-Allow-Origin: *? I am setting a REST service and trying to decide if I need to support JSONP to allow cross domain javascript access or ...
5
votes
4answers
978 views
JSONP vs IFrame?
Soon I'll be needing to build a widget that some of our clients can embed in their own websites.
To future proof my widget the embed code would be something like this:
<script ...
5
votes
2answers
2k views
Can't get the JSONP working with WCF Data Services
It seems from all that I read and watched, exposing JSON from a WCF Data Service should be as easy as adding the JSONPSupportBehavior attribute to the service class.
The problem is that VS2010 ...
5
votes
2answers
480 views
Do I need to sanitize the callback parameter from a JSONP call?
I would like to offer a webservice via JSONP and was wondering, if I need to sanitize the value from the callback parameter.
My current server side script looks like this currently (More or less. ...
5
votes
3answers
6k views
Jquery success function not firing using JSONP
Been doing some playing call my service which is on a different domain using jQuery. The call to the service is successfully made (my debug point gets tripped), and the correct response is returned ...
5
votes
1answer
849 views
Cross-domain AJAX using jsonp and .NET Web Service over SSL/HTTPS
I am using the example below to do a cross-domain ajax call using .net web services and jquery.
...
5
votes
5answers
2k views
with jQuery, access json from cross domain url where json may be poorly formed
I'm using jQuery's ajax function to hit a cross domain url. The url will return json. I'm in the discovery phase with this but I think, because the json values contain several '"' strings, the ...
5
votes
8answers
2k views
What is JSON-P & how do you pronounce it?
Related question: Explanation and usage of JSONP.
I know what JSON is but what is JSON-P?
How do you pronounce JSON-P?
4
votes
1answer
49 views
cross domain posts to ASP.Net MVC app
I'm developing an app where HTML and javascript chunks are delivered down to different clients. I'm able to GET the html/javascript chunks by adding the following to web config file:
...
4
votes
1answer
98 views
jQuery: get JSON via ajax, but with POST instead of GET
I'm using jQuery's $.ajax to make a request to a third-party server, using JSONP. I specify the method as POST, but it uses GET anyway:
$.ajax({
type: "POST",
dataType: "json",
...
4
votes
3answers
324 views
Difference between Ajax, restful/Rest JSON and JSONP
I am just confused with the these terms can anybody please provide/explain me brief with an example?
Thanks
4
votes
1answer
1k views
Using JSON data in D3 Javascript visualisation
I'm working through the use of JSON data to drive some charts made with the javascript D3 visualisation tools (http://mbostock.github.com/d3/). I've setup my WCF service, and this code in Jquery ...
4
votes
2answers
773 views
JSON Naming Convention
Is there a standard on JSON naming? I see most examples using all lower case separated by underscore (lower_case). But, can you use PascalCase or camelCase?
4
votes
4answers
2k views
jQuery AJAX JSON dataType Conversion
Hopefully that title isn't too cryptic. What's happening is I have a jQuery AJAX script that I'm trying to use to access an API on a remote server, which returns a JSON response. However, the API ...